Hey again! ;D
Let’s say I have a text value, for example “Peter” and a list of values in database, and one of those is “Pet”.
I want to run a compare function, but I want to find exact same values from database, which is not followed by additional characters in a word.
For example, in a word “Peter” should not be found “Pet”, but in word “Pet Dog” should be found the “Pet” from the database.
So if a word is “Petxyz” it should ignore it. Same if the word have some characters before it: “xyzPet” should not be found. Any suggestions, as I’m pretty stuck with this.
Thanks!