I need help breaking up an address. I am trying to isolate the company name. Here is the format that I am working with:
VENDOR: ABC COMPANY
123 MAIN STREET
LOS, ANGELES, CA
My starting pattern is simple:
VENDOR: (.*)
But no matter what I put after I still get the same result of:
ABC COMPANY123 MAIN STREET
I've tried things like:
\s?[1-999]
\n
\s?\d.*
.*
Any help would be great!
(Side note: what does \n do and how do you apply it properly?)