91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ contains函數怎樣使用

c++
小樊
113
2024-07-16 00:05:49
欄目: 編程語言

在C++中,std::string類和C-style字符串都提供了std::string::find()方法來檢查是否包含指定的子字符串。下面是一個使用std::string::find()方法的簡單示例:

#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, world!";
    std::string subStr = "world";

    if (str.find(subStr) != std::string::npos) {
        std::cout << "The string contains the substring." << std::endl;
    } else {
        std::cout << "The string does not contain the substring." << std::endl;
    }

    return 0;
}

在上面的示例中,我們首先定義了一個std::string類型的字符串str和一個要查找的子字符串subStr。然后,我們使用str.find(subStr)方法查找subStrstr中的位置。如果返回值不等于std::string::npos,則表示字符串包含子字符串。

另外,對于C-style字符串,可以使用strstr()函數來檢查是否包含指定的子字符串。下面是一個使用strstr()函數的簡單示例:

#include <iostream>
#include <cstring>

int main() {
    const char* str = "Hello, world!";
    const char* subStr = "world";

    if (strstr(str, subStr) != nullptr) {
        std::cout << "The string contains the substring." << std::endl;
    } else {
        std::cout << "The string does not contain the substring." << std::endl;
    }

    return 0;
}

在上面的示例中,我們首先定義了一個C-style字符串str和一個要查找的子字符串subStr。然后,我們使用strstr()函數查找subStrstr中的位置。如果返回值不為nullptr,則表示字符串包含子字符串。

0
江达县| 青川县| 鹿泉市| 大城县| 和田市| 缙云县| 武山县| 宁阳县| 久治县| 财经| 连城县| 长寿区| 敖汉旗| 武夷山市| 朝阳区| 鸡西市| 中阳县| 徐州市| 遵化市| 喀什市| 屯门区| 汝城县| 岳阳市| 林口县| 加查县| 沁阳市| 武邑县| 钟山县| 嵊泗县| 同心县| 普陀区| 民勤县| 昔阳县| 嘉鱼县| 九寨沟县| 蕲春县| 达日县| 固安县| 长沙县| 南丹县| 宣汉县|