(i) The simple text is searched in the title, subject, description of the products.
(ii) For partial matching, use wildcards as shown in these examples:
invit* | - will search for all words beginning with 'invit'. |
decor*n* | - will search for all words contaning 'decor' in the beginning and the other part of the word contains 'n'. |
st*e | - will match words like style. |
par?y | - will match all words having 'par' and 'y' tokens and any letter or digit between them. For example "party" will be found. |
tus~ | - will match all words like 'music', etc. This is called fuzzy search. |
Note: The symbols '*' and '?' cannot be used as the first character of the search.