View Single Post
Old 06-24-2017, 07:04 PM   #859
bluepiggy42
Member
bluepiggy42 began at the beginning.
 
Posts: 16
Karma: 10
Join Date: Jun 2016
Device: none
Quote:
Originally Posted by JimmXinu View Post
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
bluepiggy42 is offline   Reply With Quote