I am trying to work up an expression to match the firm name in addresses like
Vice President of Compliance
10004 South 152nd St. #A
Omaha
I tried using the following expression to match the Vice President of Compliance string but it doesn't seem to be working. Effectively, I am trying to match the string that is preceding the beginning of the address.
\w.+(?=\d+(?=\s+))
Can someone please guide me on this