Here is my sample Data and format , yeah it has spaces I have extracted from pdf
08/11/2020 TEST HOME Mortgage Company TRU
MORTGAGE
then I use this regex (?<=^\s*\d{2}/\d{2}/\d{4}\s+)\S.*?(?=\s{2}) and then ignorecase and multiline
The output I wanted to get is TEST HOME MORTGAGE , but my current regex just gives me TEST HOME because MORTGAGE is on the next line.
Any idea guys ? would be appreciated. Thank you