Quote:
Originally Posted by Tex2002ans
Hmmm, I can think of one helpful search advantage in Notepad++, "Find in All Opened Documents":
http://cdn.ghacks.net/wp-content/upl...t-in-files.png
it then pops up a list with each hit on its own line. Better than a "Count All" showing you the raw number of hits, and having to "Find Next" throughout the entire book.
|
Some time ago I created a simple
regex throw-away plugin for Sigil that displays Python
re/regex matches as validation pane entries. (I originally wrote it, because the Python regex engine doesn't support all PCRE features.)
It also supports
fuzzy matching, if you select the
regex engine instead of the default
re engine.
For example if you search for
(?:\bthe\b){e<=1}, it'll find
the, them, then, she etc.
(It'll only search the currently selected file. To search all files click the Text folder or select all files. You also can't use it to replace text.)