I'm trying to find lines that don't end with </url>
Here's the regexp I've got so far.
\<\/url\>
I can find the </url>
, but I'm looking for lines that are missing that at the end.
My data looks like this:
<url><loc>blah1 blah1 blah1</loc></url>
<url><loc>blah2 blah2 blah2
<url><loc>blah3 blah3 blah3</loc></url>
In this example I'm trying to find the line that looks like blah2
Thanks in advance!