Quote:
Originally Posted by paperback
For example. suppose you want to find the word "protege" (i.e. protégé). It will not return any results if there are diacriticals in it, unless you enter the letters with the exact same diacriticals.d all instances of the word even if the diacriticals have been incorrectly applied.
|
Calibre is using the
regex library instead of the default
re library. And
regex has limited support for
fuzzy searches.
For example:
(these){e<=1} will find
these, those, there (and many other strings).
If you search for
(protege){e<=2} in Regex mode, it'll find
protege ,
protegé and
protégé.
It might of course also find other similar strings...