How to get a sentance by using regex

Hi,

I want to get a particular sentance from HTML file format notepad by using Regex. And I used this expression (?<=align=“left”>\n).?\n.(?=<) the result shows correct in (https://regex101.com/) but not in Studio.

Sentance I need

Hi @Prasaanth_S ,

If the text before and after is static, please try using string manipulation.

Hi @Prasaanth_S

Could you try the below regular expression,

(?<=align="left">\n)[\s\S]+(?=\n<\/td>)

I am using https://regexr.com/ for this, you can use regex101 no problem.

Hope it helps!!