c++

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

小亿
194
2024-04-11 19:07:11
栏目: 编程语言

在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,则说明找到了子字符串,打印出子字符串在字符串中的位置索引;否则,打印出子字符串未找到的信息。

0
看了该问题的人还看了