fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var test = "/abcd1/ef/gh001/d";
  9. test = Regex.Replace(test, @"(?<=abcd)\d+", "");
  10. Console.WriteLine(test);
  11. }
  12. }
Success #stdin #stdout 0.08s 24464KB
stdin
Standard input is empty
stdout
/abcd/ef/gh001/d