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

溫馨提示×

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
潜山县| 华池县| 玉龙| 涿州市| 常宁市| 宜城市| 麻城市| 周口市| 平湖市| 连云港市| 仙居县| 枣强县| 增城市| 榆社县| 雷波县| 临漳县| 夏津县| 宜兰市| 六安市| 镇康县| 东海县| 赣州市| 河南省| 横峰县| 福州市| 新泰市| 南宁市| 光山县| 兖州市| 大余县| 康保县| 湟中县| 湘乡市| 虹口区| 屯留县| 阿克苏市| 汉阴县| 耒阳市| 博野县| 临湘市| 安福县|