I need to get the HTML content which is in the middle of two HTML comments. see the code:
<p>hello</p>
<!-- Write your comments here -->
<p>hello</p>
<!-- another comment -->
In this example, i need to get the <p>Hello</p>
, how can i do this? with Regex?
Thanks for reading.