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

溫馨提示×

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
城步| 多伦县| 广安市| 遂川县| 兴文县| 琼结县| 姚安县| 琼海市| 勃利县| 芜湖县| 孟村| 余江县| 罗源县| 阿巴嘎旗| 建阳市| 离岛区| 赣榆县| 恩平市| 奎屯市| 浦城县| 长垣县| 蓬安县| 金堂县| 江油市| 嘉善县| 启东市| 石嘴山市| 宣汉县| 苏州市| 抚宁县| 延长县| 濮阳市| 开鲁县| 平南县| 辽中县| 桦南县| 兴宁市| 麦盖提县| 启东市| 连江县| 始兴县|