Searching in the code of a Google Maps result. My regex to get an address:
Regex re_addressen = new Regex("\"\\w*\\s[0-9]+,\\s[0-9][0-9][0-9][0-9]\\s\\w\\w\\s\\w,*");
(Searching for all the addressess in every google maps result)
But then I only get addresses that are one word. Some addresses have 2 words. I want those aswell seen in my listbox.
My regex idea here is:
Regex re_addressen =
new Regex("\"\\w*\\s\\w*[0-9]+,\\s[0-9][0-9][0-9][0-9]\\s\\w\\w\\s\\w,*");
But still, only addresses that are one word long.