fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. Regex rx = new Regex(@"^[0-9*\s]+");
  9. Console.WriteLine(rx.Replace("5 * my product", ""));
  10. }
  11. }
Success #stdin #stdout 0.03s 134592KB
stdin
Standard input is empty
stdout
my product