The data which I need to extract from a web page is delimited by specific comments: <!--data-->
.
I use this expression: <!--data-->.+?<!--data-->
ad it works fine.
But maybe there is a way to to get the text without the html comments at the beginning and at the end of the string?
I also need this when looking for img tags in html code but the result shuld contain only the link to the picture.
Is this possible to include in a regular expression?