05-02-2024, 04:15 PM
Check for extended versions of your search term. For example:
PRINT "foo"
PRINT "foobar"
Search for "fo". Then search for whole word "fo". Then search for "foo" and whole word "foo".
With whole word, there has to be a match for the whole word -- and JUST the whole word.
"foo" will find "foo", but reject "foobar", for example.
PRINT "foo"
PRINT "foobar"
Search for "fo". Then search for whole word "fo". Then search for "foo" and whole word "foo".
With whole word, there has to be a match for the whole word -- and JUST the whole word.
"foo" will find "foo", but reject "foobar", for example.