fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var rx = new Regex("^1+");
  9. var s = "11111aA$xx1111xxdj$%%";
  10. var res = rx.Replace(s, "");
  11. Console.WriteLine(res);
  12. }
  13. }
Success #stdin #stdout 0.06s 37200KB
stdin
Standard input is empty
stdout
aA$xx1111xxdj$%%