MatchCase Optional Variant True to make the search case sensitive. The default value is False.
Thanks HOTPEPPER, so how can I use the find function to find exact matches "hello" and NOT "hello world"From the help file:
If MatchCase were set to TRUE, and you were searching for hello, it would not match HELLO because that is in upper case (it does not match case), nor it would it match Hello (not all lower case)
From the help file:
If MatchCase were set to TRUE, and you were searching for hello, it would not match HELLO because that is in upper case (it does not match case), nor it would it match Hello (not all lower case)