Regular expression support

Hi everyone , I’m new to Uipath and I want to extract only “Generate Date” from following txt file using regular expressions match.

Thanks in advance

txt file can be download from following link since I don’t have authority to upload attachment since I am a new user.

@mibise2958 ,

Try with this,

(?<=Generate Date:\s).*?(?=Payment Mode)

Mr. Mibise, its not working , I only need to select the date infront of “Generate Date”

Ex, “24/05/2021”

Hi @mibise2958

Try this regex

(?<=GENERATED DATE\s+:).*

Regards

Nived N :robot:

Happy Automation

1 Like

@NIVED_NAMBIAR , It worked when I tested in UI path , Thank you very much for your support

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