中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何用c++ string匹配查找子串位置

c++
小樊
94
2024-09-25 08:50:11
欄目: 編程語言

在C++中,你可以使用std::string類的成員函數find()來查找子串的位置。下面是一個簡單的例子:

#include <iostream>
#include <string>

int main() {
    std::string str("Hello, welcome to the world of C++!");
    std::string sub("C++");

    size_t pos = str.find(sub);

    if (pos != std::string::npos) {
        std::cout << "Found '" << sub << "' at position " << pos << std::endl;
    } else {
        std::cout << "'" << sub << "' not found in the string." << std::endl;
    }

    return 0;
}

在這個例子中,我們在字符串"Hello, welcome to the world of C++!"中查找子串"C++"find()函數返回子串在母串中首次出現的位置(從0開始計數)。如果子串不存在于母串中,find()函數將返回std::string::npos

0
青川县| 本溪市| 兰西县| 古蔺县| 嫩江县| 浠水县| 兰考县| 周口市| 如东县| 安乡县| 安西县| 固阳县| 平度市| 黎川县| 玉田县| 乃东县| 桃园市| 报价| 宽甸| 井陉县| 阿合奇县| 乌拉特前旗| 蒙城县| 亚东县| 琼海市| 竹山县| 仁怀市| 清丰县| 桐城市| 深水埗区| 普宁市| 东辽县| 渝中区| 太康县| 宁国市| 疏勒县| 青田县| 武强县| 大丰市| 清新县| 三台县|