well, notepad++ is in my view still the best solution for multiple regex editing.
how i do it is to install pythonscript plugin for notepad++.
inside plugin folder is Python Regex Replacements.py file.
there you have couple examples:
----------
editor.rereplace(r"([A-Z]{3})\1", r"\1")
----------
delete those & insert your own.
run script from notepad++ & save it in sigil.
it is very useful for indesign exported epubs .
|