Doesn't work. Just finds all the single paragraphs between
and
Which is the same thing I get with
Code:
<p><a href=(.*?)</p>
I need something that selects everything from one occurrence of
to the following one. There are "line breaks" in between (I don't know if that's the right word. Line breaks, something like this
)
THIS WORKS, but it's not very clean work:
First, find all the occurrences of \s+ and replace with space.
Then look for
Code:
<p><a href=(.*?)<p><a href=(.*?)
The code is barely readable this way though, as there are no line breaks anymore.
Ty