How can I get a list of result of regex, in to a list?
I'll show my case as example: I have a the following HTML string code:
<div>
<p>Hello World</p>
<p>Hello Stackoverflow</p>
<p>The book is on the table</p>
</div>
My regex filter is the following:
<p>(.*)</p>
The result that I'm looking for is the following list:
<p>Hello World</p>
<p>Hello Stackoverflow</p>
<p>The book is on the table</p>
How can I proceed to get that result?