I have to get particular text from text file while searching customized word.
Ex:
Search E. 212 get below value 602 03
Thank
Shaik
I have to get particular text from text file while searching customized word.
Ex:
Search E. 212 get below value 602 03
Thank
Shaik
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!!
(?<=E.\s*212.*\s+)(\d+.*)
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
Thank you @vrdabberu
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.