Mr Lucky
Well-known member
Seems to me that would be best otherwise pos is the same as •pos• which seems to be current behaviour.So I've refined the logic.
Code:If the keyword is pos, it will match "pos" but not "post", "compost", "position" If the keyword is pos*, it will match "pos" and "post", but not "compost", "position" If the keyword is *pos, it will match "pos" and "compost", but not "post", "position" If the keyword is *pos*, it will match "pos", "compost", "post", "position"