fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string a = "I have";
  8. string b = "two apples";
  9.  
  10. string[] array = a.Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries);
  11. Console.WriteLine(array[0] + " " + b + array[1]);
  12. Console.WriteLine(a.Insert(a.IndexOf(' ') + 1, b));
  13. }
  14. }
Success #stdin #stdout 0.02s 34752KB
stdin
Standard input is empty
stdout
I two appleshave
I two appleshave