在C++中,你可以使用std::wstring
的find()
方法來查找子字符串
#include <iostream>
#include <string>
int main() {
std::wstring str = L"這是一個示例字符串";
std::wstring to_find = L"示例";
size_t found = str.find(to_find);
if (found != std::wstring::npos) {
std::wcout << L"找到子字符串: " << to_find << std::endl;
std::wcout << L"位置: " << found << std::endl;
} else {
std::wcout << L"未找到子字符串" << std::endl;
}
return 0;
}
在這個例子中,我們首先定義了一個寬字符串str
和一個要查找的子字符串to_find
。然后,我們使用find()
方法查找子字符串的位置。如果找到了子字符串,find()
方法返回子字符串的起始位置;否則,它返回std::wstring::npos
。最后,我們根據find()
方法的返回值輸出相應的結果。