I have an address with the following structure:
Address: Name of business
Address line #1,
Address line #2 Pincode
I created the following regex statement : re.findall(r'Address : (.*)', text, re.MULTILINE)
I presume that this would find all the lines from Address: to the 6 digit pincode.
But it only seems to be pulling the first line. What am I doing wrong?