Quote:
Originally Posted by troll05
Another question about "find and replace". If I want to delete pagenumbers coded like this: <span>[7]</span> , is there a kind of placeholder or joker for the digit like the asterisk in Windows programms? Tried this, backslash and some others to no avail, except deleting significant parts of the book 
|
Regex Search:
<span>\[\d+\]</span>
That is everything, including any amount of digits between the square brackets.
You have to 'escape' the brackets as they mean range/set in normal usage
([a-f] = a single letter in the set: a through f )