So I'm trying to figure out what I"m doing wrong. Find and Replace just stopped working, it won't replace anything.
I'm putting in this:
Quote:
<p class="calibre4"><span class="calibre7">2</span></p>
|
And I want to increase the number for chapters, so I'm putting this in the Find and Replace box in REGEX:
Quote:
<p class="calibre4"><span class="calibre7">(\d+)</span></p> -- I've done this with and without parentheses
|
Then replacing with:
Quote:
<h2 align="center">\1</h2> -- I've also tried the other slash, number first as well as behind
|
Any thoughts as to why it won't replace anything?
Thanks!!