I'm counting the occurrence of the exact word "value". I have used this code, and the result is this:
description count
value value 2
valueses 1
val 0
I want the results to be like this, where the sub-string of what i'm searching is not counted. In this case valueses count is 0.
description count
value value 2
valueses 0
val 0
Any solutions would be much appreciated thanks.