Quote:
Originally Posted by automa
I just tried finding this (?i)<p([^>]+)>(.*?)Chapter(.*?)</p>
and replacing it with this: <h2\1>\2Chapter\3</h2>
|
How about changing it to
finding: (?i)<p(.*?Chapter.*?</)p>
replace: <h2\1h2>
Do you get any matches then?