StrChrStrChr*
*Contents  *Index  *Topic Contents
*Previous Topic: ChrCmpI
*Next Topic: StrChrI

StrChr


LPTSTR StrChr(
    LPCTSTR lpStart,
    WORD wMatch
    );

Searches a string for the first occurrence of a character that matches the specified character. The comparison is case sensitive.

lpStart
Address of the string to be searched.
wMatch
Character to be used for comparison.

The comparison assumes lpStart points to the start of a null-terminated string.


Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.