I am pretty new to regex and I am trying to grab part of this string, I am looking for it to start grabbing the string at the first digit in the string and copy the entire string all the away until the end digits. Example below.
import re
string = "['Today is the open house of 1234 High Drive, Denver, COLORADO 80204; open to the Public "
property_address = re.findall('d-ddddd', str(string))
print(property_address)
Code above does not work, I’m a bit confused on how to tell Regex, start on first digit you find and grab until you find 5 digit sequence.
Thanks for all the help or examples.