Quote:
Originally Posted by Wipneus

Sometimes i have a book were i want to change the title between the tags. Then i see that every page has an different number and/or letter
On page 1 stands <title>x97890451166172</title>
On page 2 stands <title>x97890451166173</title>
until to
The last page <title>x97890451166202</title>
Now i can change them page by page (editing) but is there a simple way to change them all together
to <title>Robin Hood</title>
Sorry for my bad english but i hope you can understand what i ask. 
|
Use the Editor
(REGEX) search:<title>x\d+</title>
replace:<title>Robin Hood</title>
searches for <title> that contains
x and any number of digits (probably over kill, but I like to enforce limits when possible)