在C++的<string>
庫中,查找子串的方法是使用find()
函數。該函數返回子串在原字符串中第一次出現的位置索引,如果未找到則返回std::string::npos
。
以下是find()
函數的基本語法:
std::size_t find(const std::string& str, std::size_t pos = 0) const;
其中,str
是要查找的子串,pos
是開始查找的位置索引(默認為0),返回值是子串在原字符串中第一次出現的位置索引。
以下是一個簡單的示例:
#include <iostream>
#include <string>
int main() {
std::string str("Hello, world!");
std::string sub("world");
std::size_t pos = str.find(sub);
if (pos != std::string::npos) {
std::cout << "子串的起始位置為: " << pos << std::endl;
} else {
std::cout << "未找到子串" << std::endl;
}
return 0;
}
輸出結果為:
子串的起始位置為: 7