fork(2) download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. Regex regex = new Regex(@"([\w\W]+)\s(\d+)");
  9. var match = regex.Match("R 25 de março 200");
  10. if (match.Success) {
  11. string endereco = match.Groups["1"].Value;
  12. string numero = match.Groups["2"].Value;
  13. Console.WriteLine(endereco);
  14. Console.WriteLine(numero);
  15. }
  16. }
  17. }
Success #stdin #stdout 0.07s 19808KB
stdin
Standard input is empty
stdout
R 25 de março
200