fork(6) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string s = "a b c d e f g h i";
  8. var array = s.Split(new string[] {" "}, StringSplitOptions.RemoveEmptyEntries);
  9. foreach (var element in array)
  10. {
  11. Console.WriteLine (element);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.06s 33976KB
stdin
Standard input is empty
stdout
a
b c d
e f g h
i