ps. you bracket the text fragments you want to keep, so you can refer to them as \1 \2 \3 in the replace forumala
so ( back on a pc keyboard now... find
<form>(.*)<em>(.*)</em>(.*)</form>
that finds stuff that is in em tags which are within form tags, and you have 3 text fragments which will be preserved
now assemble how you want it to look without the em tags so replace with
<form>\1\2\3</form>
|