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"