String.h如何查找子字符串

小樊
127
2024-06-29 12:17:40
欄目: 編程語言

在C++中,可以使用std::string類的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 << " 處找到" << std::endl;
    } else {
        std::cout << "未找到子字符串" << std::endl;
    }

    return 0;
}

在上面的示例中,我們首先定義了一個(gè)字符串str和一個(gè)子字符串subStr。然后使用find()方法在字符串str中查找子字符串subStr的位置,并將返回值存儲(chǔ)在found變量中。如果find()方法找到了子字符串,則返回子字符串在原字符串中的位置,否則返回std::string::npos。最后根據(jù)返回值輸出相應(yīng)的結(jié)果。

0