fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string txtId = " 000 0 0 ab - 123cd ef 12300 ";
  9.  
  10. txtId = Regex.Replace(txtId, @"^[\s0]+|\s", "");
  11.  
  12. Console.WriteLine(txtId);
  13. }
  14. }
Success #stdin #stdout 0.03s 30656KB
stdin
Standard input is empty
stdout
ab-123cdef12300