Hello,
the common answer to this question would be
<tag>(.*)</tag>
or
<tag>[^<]*
But I have LFs (and whitespace) around the tags:
<html>
<body>
One text line to be retrieved.
</body>
</html>
So I tried
(?s)<body>(.*)</body>
But that didn't help.
What's missing?