The information in this article applies to:
SUMMARYThe WordBASIC InStr function is case sensitive. For example, a search for the string "Test String", as in
returns a valid position number only if the string "Test String" is
present in A$. "TEST STRING" and "test string" are not found by the
InStr function.
To work around this problem, use one of the following:
-or-
The LCase$ and UCase$ functions return their arguments (in this case,
the text of A$) in either lowercase text or uppercase text
respectively, without modifying the original string. As a result,
either method is effective for case-insensitive text searches.
Additional query words:
Keywords : kbmacro winword word6 winword2 |
Last Reviewed: December 22, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |