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

溫馨提示×

如何用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
庆元县| 钟祥市| 耒阳市| 东城区| 横山县| 当阳市| 清水河县| 鸡泽县| 康乐县| 梓潼县| 开化县| 榕江县| 高邮市| 汝南县| 西畴县| 蒲城县| 渭南市| 瑞丽市| 夹江县| 贵州省| 四会市| 荆门市| 牙克石市| 建平县| 扬中市| 迁西县| 五寨县| 博乐市| 康乐县| 德州市| 抚远县| 乐亭县| 龙口市| 哈巴河县| 印江| 衡阳市| 阜新| 武汉市| 普兰县| 平和县| 师宗县|