So I finally got my boss to approve the use of perl for this purpose as opposed to sed.
Here's the basic quandry.
I have lines like this:
<div class="SectionText">Sometext</div><div class="SectionText">Some more text</div>
It's terribly messy, but I didn't write it. Either way, there are a goodly number of pages like this and they need to be changed to this format:
<p>Sometext</p><p>Some more text</p>
Obviously this needs to be non-greedy. Now here's the line I've come up with to help with this:
perl -nle "s/(.*)<div class=\"SectionText\">(.*?)<\/div>(.*)/\1<p>\2<\/p>\3/ig; print $1" "somefile.html" > otherfile.html
However, this does nothing and all of the SectionText tags still remain.
.*in the beginning, in the middle and at the end of the regex. Also, are you sure you don't want to use an actual HTML parser for this? – Lev Levitsky Mar 22 '12 at 13:29