Quote:
Originally Posted by Paxman53
Hi Everyone,
In the new build S&R doesn't have Wildcard expressions.
I used to use ? to replace page numbers and other unwanted phrases in code view with blanks.
e.g. <p class="calibre5">61</p>
Find <p class="calibre5">??</p>
How do I achieve this with the new build
Any advice greatly appreciated
|
Use this regular expression:
<p class="calibre5">\d+</p>
\d matches any digit, and + indicates one or more occurrences.