SECEdit::FindNextString

LPCTSTR SECEdit::FindNextString(LPCTSTR lpszText, LPCTSTR lpszFind, int nLength = -1, BOOL bMatchCase = TRUE)

Find a string in a string.

Defined in: SECEdit.cpp

Return Value

Returns a pointer to the first occurrence of lpszFind in string lpszTest, or NULL if lpszFind is not found. Equivalent to _tcsstr with the addition of being able to specify the length to search, and case sensitivity.

Parameters

lpszText

Points to the string to search.

lpszFind

Points to the string to search for.

nLength

The maximum length to search. If -1, searches the

bMatchCase

Match case entire length of lpszText.

See Also

SECEdit