Hi I am new to this and need help extracting address from the following string.
"Street name: Main St\r\nHouse number: 3250\r\nCity: Corona\r\nState: CA\r\nPostal code: 92882\r\nCountry: United States"
Currently I am using multiple patterns to extract each element and then concat it but I want to know if i can do it in one shot.
I am using "City\:(.*)" to extract Corona, "House number\:(.*)" to extract 3250 and then combining multiple strings to form the address "1 Main St, Corona CA 92882"
Is there a way I can extract and contact in a single regular expression to get the desired results?