我想知道是否有一个本机C++(或STL/Boost)函数会在CString中搜索指定的字符串?
例如
CString strIn = "Test number 1"; CString strQuery = "num"; bool fRet = SomeFn(strIn, StrQuery); if( fRet == true ) { // Ok strQuery was found in strIn ...
我发现了一些像CompareNoCase IndexOf等函数......但是到目前为止他们并没有真正按照我的意愿去做(或者使用CLR/.Net)
谢谢!
CString :: Find()就是你想要的,其中一个重载是子字符串搜索.
CString strIn = "test number 1"; int index = strIn.Find("num"); if (index != -1) // ok, found