fork download
  1. using System;
  2. using System.Text;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. StringBuilder sb = new StringBuilder("LS2234-32342-2342-06455");
  9. sb.Remove(18, 1);
  10. sb.Insert(18, 'E');
  11. Console.WriteLine(sb.ToString());
  12. }
  13. }
Success #stdin #stdout 0.02s 33840KB
stdin
Standard input is empty
stdout
LS2234-32342-2342-E6455