View Single Post
Old 06-24-2017, 01:31 PM   #858
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,027
Karma: 4604637
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by bluepiggy42 View Post
Quick question......I am doing a search and wanted to know if there was a way to pair down the results. For instance, I am looking for tablet, but the search also returns tabletop as tablet is found in that word.
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.
JimmXinu is offline   Reply With Quote