fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string nome0 = "0 - MARIA APARECIDA DE SOUZA MOURA 636598241";
  9. string nome1 = "1 - MARIA APARECIDA DE SOUZA MOURA 2018";
  10. string nome2 = "2 - MARIA APARECIDA DE SOUZA 636598241 MOURA";
  11.  
  12. string strRegex = "(\\s[0-9]{5,})+$";
  13.  
  14. string resu0 = Regex.Replace(nome0, strRegex, "");
  15. string resu1 = Regex.Replace(nome1, strRegex, "");
  16. string resu2 = Regex.Replace(nome2, strRegex, "");
  17.  
  18. Console.WriteLine(resu0);
  19. Console.WriteLine(resu1);
  20. Console.WriteLine(resu2);
  21. }
  22. }
Success #stdin #stdout 0.08s 19656KB
stdin
Standard input is empty
stdout
0 - MARIA APARECIDA DE SOUZA MOURA
1 - MARIA APARECIDA DE SOUZA MOURA 2018
2 - MARIA APARECIDA DE SOUZA 636598241 MOURA