Split captured text

Captured text : Published on 04/08/2023 - Report-2023-31

Please help me to store published on date & Report date in 2 variables

Expected output :

Variable 1 (Published on ) : 04/08/2023
Variable 2 (Report ) : 2023-31

@Sathish_Kumar_S
Use These regex

image
image

Use two “Find matching pattern activity” and each matching activity will have a output variable where you can store your values

Regards

1 Like

Use find Matching pattern activity :
regex to store Published On date:
(?<=Published on )\d{2}/\d{2}/\d{4}
regex to store Report Date:
(?<= Report-)\d{4}-\d{2}

2 Likes

ex.zip (2.9 KB)

Refer the code
Thank you…

1 Like

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