fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string str = "name (12345)";
  9. MatchCollection mc = Regex.Matches(str, "[0-9]+");
  10. int a = int.Parse(mc[0].ToString());
  11. Console.WriteLine(a);
  12. }
  13. }
Success #stdin #stdout 0.13s 24712KB
stdin
Standard input is empty
stdout
12345