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

溫馨提示×

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
资兴市| 阳江市| 双江| 松溪县| 获嘉县| 福鼎市| 平顶山市| 明水县| 宁蒗| 玉林市| 故城县| 宕昌县| 杨浦区| 克拉玛依市| 广汉市| 广平县| 湖口县| 册亨县| 策勒县| 木里| 银川市| 额尔古纳市| 高要市| 乳山市| 孟津县| 许昌市| 呼和浩特市| 荥阳市| 陈巴尔虎旗| 浮山县| 景泰县| 邯郸县| 扎囊县| 中牟县| 五台县| 大兴区| 得荣县| 凉城县| 平武县| 时尚| 平顶山市|