CStringT::FindOneOf
搜尋字串相符 pszCharSet所包含的所有字元的第一個字元。
int FindOneOf(
PCXSTR pszCharSet
) const throw( );
參數
- pszCharSet
包含符合字串的字元。
傳回值
第一個字元的以零起始的索引。 pszCharSet也在的這個字串的;– 1,如果沒有任何相符項目。
備註
尋找中第一個出現在 pszCharSet的任何字元。
範例
// typedef CStringT<TCHAR, StrTraitATL<TCHAR, ChTraitsCRT<TCHAR>>> CAtlString;
CAtlString s(_T("abcdef"));
ASSERT(s.FindOneOf(_T("xd")) == 3); // 'd' is first match
需求
Header: cstringt.h