Quote:
Originally Posted by larysa
on this book i have more and more (inside text)
<a id="uRdWyYWgcwixJRsN9JboXZ6" class="calibre2"></a>
with different id="xxxxx" value. i want clean all this unnecessary string.
but how to search (& replace with nulled) this string all over the book?
|
The following regex should work:
Code:
<a id=".*?" class=".*?"><\/a>
The following would find all a tags whether they have attributes or not:
The replace string should be empty.