Trying to get the all characters until new line after one/more digits with positive lookbehind from below text with this
(?<=below customer.\s.*\n.* )(.*)
I order standardinstalation to below customer.
Paul Rilley
Abbeyroad 55
It works (gives 55) if the roadname does not have a space. Not working with (High Tory road). Also there could be letters after the digits (55b) that I should get. I need to look behind the words (below customer) since the first line is the only part that is always the same.