fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string sku = "plmca60 5";
  8. int index = sku.IndexOf(" ");
  9. sku = sku.Remove(index, 1).Insert(index, ",");
  10. Console.WriteLine(sku);
  11. }
  12. }
Success #stdin #stdout 0.04s 34776KB
stdin
Standard input is empty
stdout
plmca60,    5