Regex in uipath

Suppose There is Bill in PDF format I want [total price] … price may change in each PDF I want to extract that total price using regex ? Can u share some useful link so I can try or u can share any xaml file if u worked before?

Try this out:

(\$\s*\d+(?:\.\d+)?)

Or if you can make the dollar symbol optional

(\$?\s*\d+(?:\.\d+)?)