fork download
  1. using System;
  2. using System.Linq;
  3. using System.Text.RegularExpressions;
  4.  
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. foreach (var match in Regex.Matches(@"01234567ⅧⅨ十", @"\d+").Cast<Match>())
  10. {
  11. Console.WriteLine(match.Value);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.07s 24472KB
stdin
Standard input is empty
stdout
01234567