Thanks for the updated RegEx. I have one last thing to add to this...
What if I was working with an address string like this:
$string="1234-12 1st Street";
Will the RegEx above only return 1234-12 and not 1234-121?
or
$string="1234 1st Street";
Will the RegEx above only return 1234 and not 12341?
I want to ignore any numeric chars after the first <space> character. Can that be done?
Thanks!!! I am currently reading all the online tutorials I can trying to get up to speed on regex on my own, but I have a time crunch on this project.
Thanks again for all your input!!!!!!!!!!!
Doug