I have to get particular text from text file while searching coustomized word

I have to get particular text from text file while searching customized word.

Ex:
Search E. 212 get below value 602 03

Thank
Shaik

Hi @shaik.muktharvalli1

You can use the Regular expressions to extract the required data from the Input data.

If possible, share the text file and required output then we will provide you regex.

Hope it helps!!

HI @shaik.muktharvalli1

(?<=E.\s*212.*\s+)(\d+.*)

Hi @shaik.muktharvalli1

please use the below if you want the data after E. any value

(?<=E\.\s*\d+.*\s+)(\d+.*)

If you wanted a data after a particular word then use the below:

(?<=E\.\s*212.*\s+)(\d+.*)

Regards

Thank you :hugs: :slightly_smiling_face:

1 Like

Hi @shaik.muktharvalli1

You’re Welcome.

Happy Automation!!

Thank you @vrdabberu

1 Like

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