I need a regex that takes the cases that have number in the name of the address and also normal address. Number always ends after address.
Example: R March 25, 200.
I need the address that would be: R March 25
E and address number: 200
Regex regex = new Regex(@"\D+");
match = regex.Match("R 25 de março 200");
if (match.Success) {
string endereco = match.Value;
}