I try to remove unwanted "span's" of the form:
Code:
<span class="font1 font2 something">interesting text</span>
and used to use the following regex in find:
Code:
find: <span(.*)>(.*)</span>
replace: \2
However, this no longer works as now *everything* is found up to the terminating <p><crlf> or until a second terminating </span> when this is found earlier just before the terminating <p><crlf>.
It seems that regex behaves now greedier (while dotall is *not* enabled) then before. What am I missing?