Hi,
Newbie here.
I have a PDF that has account number, check number and amount.
Format below:
Account No.
123456-12345-1
654321-54321-0
098765-56789-1
Check No.
0000123456
0000654321
0000987654
Amount:
1,234,567.00
1,234.00
5,432.00
I already get the Check no. using Matches activity Pattern: β0000\d{6}β.
How to get the account no and amount using Matches activity?
Thanks,
Yoichi
(Yoichi)
2
Hi,
How about the following pattern?
Account No.
\b\d{6}-\d{5}-\d{1}\b
Amount
\b(\d{1,3},)*\d{1,3}\.\d{2}\b
Regards,
Yameso
(Jakub Swiderski)
4
Check no has now 4 β0β but I guess, when it grow it could has format 000\d{7}
1 Like
system
(system)
Closed
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.