在C++中,str.find()方法用于在字符串中查找特定的子字符串,并返回子字符串在原字符串中第一次出現的位置。該方法的語法如下:
size_t find (const string& str, size_t pos = 0) const noexcept;
其中,str表示要查找的子字符串,pos表示開始查找的位置,默認為0。
使用示例:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, world!";
std::string sub = "world";
size_t found = str.find(sub);
if (found != std::string::npos) {
std::cout << "Subtring found at position: " << found << std::endl;
} else {
std::cout << "Substring not found" << std::endl;
}
return 0;
}
在上面的示例中,我們首先定義了一個字符串str和一個子字符串sub,然后使用str.find(sub)方法來查找子字符串在原字符串中的位置。如果找到了子字符串,則返回其在原字符串中的位置,如果沒有找到則返回std::string::npos。