GET Text On uipath

I have text
END OF PAGES
TOTAL PAYMENT/Page : 9,990
TOTAL AMOUNT PAYMENT (w)/Page : 501,538,347.00
TOTAL INTERCHANGE FEE PAYMENT (x)/Page : -817,537.02
TOTAL REFUND : 1 TOTAL AMOUNT REFUND (y) : -100.00
TOTAL INTERCHANGE FEE REFUND (z) : 0.09 TOTAL AMOUNT DITAGIHKAN (w+x+y+z) : 500,720,710.07
How to get system regex after end of pages all text on UiPath?

Hi,

How about the following expression?

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=END OF PAGES\s+)[\s\S]*").Value

Regards,

1 Like

Hi @samarasenja

Try this

(?<=END OF PAGES\n)[\s\S]+

1 Like

Hi this is solved, thank you

1 Like

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