SECEdit::FindNextChar
LPCTSTRSECEdit::FindNextChar(LPCTSTRlpszText, TCHARchFind, intnLength= -1)
Find a character in a string.
Defined in: SECEdit.cpp
Return Value
Returns a pointer to the first occurrence of chFind in string lpszTest, or NULL if chFind is not found. Equivalent to _tcschr with the addition of being able to specify the length to search.
Parameters
lpszText
Points to the string to search.
chFind
The character to search for.
nLength
The maximum length to search. If -1, searches the entire length of lpszText.
See Also