Using the column expression node I evaluated the regex below and output the address into a separate column.
The regex I used was the following: /[0-9{5}\s[\x7f-\xffa-zA-Z\s]+[,]{1}\s[\x7f-\xffa-zA-Z0.\s]+\s[0-9]+?/
Going off the assumption it always had a 5 digit zip code [0-9{5}, a space \s, City name (umlauts included) [\x7f-\xffa-zA-Z\s]+, a comma & space [,]{1}\s, Street name (including abbrv.) and address number [\x7f-\xffa-zA-Z0.\s]+\s[0-9]+?.