quick search by "exact match"

hi,i practiced many search situations in phpmaker and i don’t really understand the concept of "exact match"my list sample :
geek
geekerwhen i do quicksearch “exact match” for “geek”, then “geeker” is in the result whereas it should not be there.only “geek” should be in the result, not the word containing “geek” substringshall you help me to find in quick search the very strict “geek” items and avoid geeke geeks geekers

The “exact match” means ‘%geek%’ so ‘geeker’ matches. What you want requires regular expression like REGEXP_LIKE(MyField, ‘\bgeek\b’) (Assume MySQL). You may use Recordset_Searching server event to add your filter by REGEXP_LIKE().