Could anyone help me out in this . Need retrieve highlighted test (email)
Sample input is given below
Testinput.txt (122 Bytes)
Could anyone help me out in this . Need retrieve highlighted test (email)
Sample input is given below
Testinput.txt (122 Bytes)
You can get the specified areas with this regex pattern.
(?<=CDATA[ ).*?(?=\ ])
Regards
Ömer
Please use the following inside a loop
Assumign the text is in variable str
In each loop you will get each line separately
Or use regex like this (?<=CDATA[ ).*?(?=\ ])
cheers