Regex , uipath


How can i select full date, like :1 October 2019


And also Gross Amount


and invoice number

Hi @UJJVAL_BHAGAT

Use the below regular expressions and try:

For Invoice Date:
(?<=Invoice Date\:\s+).*

For Gross Amount:
(?<=Gross Amount\s+)\d+[.,]?\d+

For Invoice Number:
(?<=Invoice Number\:\s+).*

Hope it helps!!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.