c++中string.find函数的用法是什么

c++
1247
2024/4/2 19:07:11
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在C++中,string.find()函数用于在字符串中搜索指定的子字符串,并返回第一次出现的位置索引。如果找到子字符串,则返回第一次出现的位置索引;如果未找到,则返回string::npos

#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 << "Substring found at index: " << found << std::endl;
    } else {
        std::cout << "Substring not found" << std::endl;
    }

    return 0;
}

在上面的示例中,我们首先定义了一个字符串str和一个子字符串subStr。然后,我们使用string.find()函数在字符串str中搜索子字符串subStr,并将结果存储在变量found中。最后,我们检查found的值,如果不等于string::npos,则说明找到了子字符串,打印出子字符串在字符串中的位置索引;否则,打印出子字符串未找到的信息。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c++ map初始化的方法是什么