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

溫馨提示×

C++ string rfind如何定位子字符串

c++
小樊
83
2024-07-19 03:10:36
欄目: 編程語言

在C++中,可以使用string類的rfind方法來定位子字符串在字符串中最后一次出現的位置。rfind方法的語法如下:

size_t rfind (const string& str, size_t pos = npos) const noexcept;

其中,str為要查找的子字符串,pos為開始查找的位置,默認值為npos,表示從末尾開始查找。

舉個例子,假設我們有一個字符串str = “hello world, hello c++”,要查找子字符串"hello"在str中最后一次出現的位置,可以這樣做:

#include <iostream>
#include <string>

int main() {
    std::string str = "hello world, hello c++";
    std::string subStr = "hello";

    size_t pos = str.rfind(subStr);
    if (pos != std::string::npos) {
        std::cout << "子字符串在位置:" << pos << std::endl;
    } else {
        std::cout << "未找到子字符串" << std::endl;
    }

    return 0;
}

在以上示例中,rfind方法會返回子字符串"hello"在字符串str中最后一次出現的位置,即23。如果子字符串不存在于字符串中,則返回npos。

0
吉木萨尔县| 鄯善县| 洛隆县| 扶沟县| 嵩明县| 长武县| 华坪县| 曲阜市| 全州县| 舒城县| 周至县| 红安县| 麻阳| 洞口县| 房产| 惠安县| 米林县| 依兰县| 思茅市| 徐水县| 浦江县| 临澧县| 余庆县| 临夏市| 涞源县| 灌南县| 铁岭县| 江阴市| 南安市| 延吉市| 兴城市| 卢龙县| 乌拉特前旗| 广水市| 呼伦贝尔市| 洞头县| 安泽县| 蓝田县| 安化县| 沁源县| 丹凤县|