Quote:
Originally Posted by Joques
Thank you! But ... the search string the HYPE provided, only nets me an error message: "The regular expression you entered is invalid."
I tried to read an introduction to regex, but it seems very arcane indeed 
|
Quote:
Originally Posted by doubleshuffle
For the example you provided in post #11, this works for me:
Code:
<a id="page_[0-9]+"/>
(Don't forget the spaces at beginning and end...)
|
This one works in my test.
Code:
( <a id="page_([0-9]+)"></a> )
Don't forget that you are using regex mode on "all test files".
bernie