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

溫馨提示×

C++中strrchr的使用示例有哪些

c++
小樊
81
2024-08-15 11:03:39
欄目: 編程語言

  1. 找到字符串中最后一個特定字符的位置:
#include <iostream>
#include <cstring>

int main() {
    const char* str = "Hello, world!";
    char ch = 'o';
    
    const char* lastOccurrence = strrchr(str, ch);
    
    if (lastOccurrence != NULL) {
        std::cout << "Last occurrence of '" << ch << "' is at position " << lastOccurrence - str << std::endl;
    } else {
        std::cout << "Character '" << ch << "' not found in the string." << std::endl;
    }
    
    return 0;
}
  1. 找到文件路徑中文件名的位置:
#include <iostream>
#include <cstring>

int main() {
    const char* filePath = "C:\\Users\\user\\Documents\\file.txt";
    const char* fileName = strrchr(filePath, '\\');
    
    if (fileName != NULL) {
        std::cout << "File name is: " << fileName + 1 << std::endl; // +1 to exclude the backslash
    } else {
        std::cout << "File name not found in the path." << std::endl;
    }
    
    return 0;
}

這些示例展示了如何在C++中使用strrchr函數來查找字符串中最后一個特定字符的位置。

0
柯坪县| 赫章县| 祥云县| 巫山县| 喀什市| 阳泉市| 武川县| 凌海市| 赣榆县| 庆元县| 泰顺县| 涿州市| 剑阁县| 乐陵市| 尉犁县| 夹江县| 岳普湖县| 贵州省| 敦化市| 彭泽县| 达尔| 鄂伦春自治旗| 沙河市| 建德市| 会泽县| 大石桥市| 嵩明县| 西安市| 柞水县| 家居| 伊宁市| 涿州市| 新河县| 收藏| 县级市| 西乌| 措美县| 蓬溪县| 吉首市| 顺平县| 平武县|