Quote:
Originally Posted by JimmXinu
Huh. I did not know that was a feature of Quality Check. Now I'm going to tell you how it works.
Looking in the code, it uses a regular expression search.
So to make only tablet, use: \btablet\b
\b means 'word boundary'.
To match tablet and tablets, use: \btablets?\b
s? means '0 or 1 s characters.
Regular expression reference.
|
Thank you!!!!!!! I use that feature all the time to find words or phrases in a book. It's my most used plug-in