WordBASIC InStr Function Is Case Sensitive

Last reviewed: July 30, 1997
Article ID: Q61960
The information in this article applies to:
  • Microsoft Word for Windows versions 1.0, 1.1, 1.1a, 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c

The WordBASIC InStr function is case sensitive. For example, a search for the string "Test String", as in

   N = InStr(A$, "Test String")

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:

   N = InStr(LCase$(A$), "test string")

  -or-

   N = InStr(UCase$(A$), "TEST STRING")

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.
Keywords          : winword winword2 word6 kbmacro
Version           : 1.x 2.x 6.0 6.0a 6.0c
Platform          : WINDOWS


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: July 30, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.