My RegExpression:
((^|\s)(clever)($|\s))
It finds "clever" in the string:
- clever or not
- yahoo clever
but it doesn't find "clever" in this string:
- what means cleverness
I don't want to bother you with the three other RegExp variations of my line above but I tried different approaches already but can't make it work.
I am filtering terms in a table to cluster them into defined groups. I am looking for the adjective "clever". I dont want to find strings where clever is part of another word, in example "MacLever" or "alcleveracio".