M
mehdi_mousavi
Hi folks,
Consider the following pattern:
(?'city'[\w ]{2,}\b)?\s*,?\s*(?'state'[A-Za-z]{2})\s*(?'zip'\d{5})
This helps me to detect patterns like:
thousand oaks CA, 12345
However, I've got no idea how I am supposed to modify the above pattern
to detect the following address as well:
thousand oaks CA, 12345-1234
Any help would be highly appreciated,
TIA,
Mehdi
Consider the following pattern:
(?'city'[\w ]{2,}\b)?\s*,?\s*(?'state'[A-Za-z]{2})\s*(?'zip'\d{5})
This helps me to detect patterns like:
thousand oaks CA, 12345
However, I've got no idea how I am supposed to modify the above pattern
to detect the following address as well:
thousand oaks CA, 12345-1234
Any help would be highly appreciated,
TIA,
Mehdi