in reply to Re: Multiple Multiline Regexps?
in thread Multiple Multiline Regexps?
while ( $data =~ m{<li>(.*?)</li>\n\s*<br>\n\s*<p>(.*?)</p>}g )
-Bird
p.s. The \s* assertions are in there to deal with leading spaces. I don't know if there are any in your data, but DamnDirtyApe had some in his code.
|
|---|