I have the ff ouput below the data i have extracted from PDF. I wanted to extract the ff data from the output and achieve the ff result.
NOVUS HOME MORTGAGE
BK OF AMER
CPORT CU
but my current regex can only get CPORT CU. Any idea , thank you.,
I have the ff ouput below the data i have extracted from PDF. I wanted to extract the ff data from the output and achieve the ff result.
NOVUS HOME MORTGAGE
BK OF AMER
CPORT CU
but my current regex can only get CPORT CU. Any idea , thank you.,
Hi,
Can you try the following pattern with Mulitiline option at RegexOption of Matches activity.
"(?<=\d{3,8}\s+)[A-Z].*?(?=\s+[A-Z]{3}\s*$)"
Regards,
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.