亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
石台县| 广南县| 英德市| 淅川县| 长顺县| 肃宁县| 仁化县| 安仁县| 平昌县| 漳浦县| 平顺县| 内江市| 惠安县| 铜川市| 临西县| 赤水市| 阿拉善盟| 邢台市| 芦山县| 建阳市| 柳江县| 陇南市| 翁牛特旗| 兴文县| 合作市| 略阳县| 察隅县| 台北县| 景洪市| 孝昌县| 阿克苏市| 榆林市| 玉林市| 繁昌县| 双鸭山市| 岳西县| 河北省| 威信县| 金川县| 康保县| 咸丰县|