在C++中,字符串的查找可以通過使用find()
方法來實現。find()
方法通常用于在一個字符串中查找另一個子字符串的位置。例如:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
std::string subStr = "World";
size_t found = str.find(subStr);
if (found != std::string::npos) {
std::cout << "Found at position: " << found << std::endl;
} else {
std::cout << "Not found" << std::endl;
}
return 0;
}
在上面的例子中,我們首先定義了一個字符串str
和一個子字符串subStr
,然后使用find()
方法在str
中查找subStr
的位置。如果找到了子字符串,則返回其位置;如果沒找到,則返回std::string::npos
。