C++ 常用的字符串处理函数实现

时间:2022-03-04 17:24:01

以下是一些标准库没有实现的函数,我觉得很方便就写了,估计会不定时更新。

  //根据一个文件的路径获取文件名

  std::string file_name(const std::string& path)
{
return path.substr(path.find_last_of("/\\") + );
} //根据一个文件的路径获取该文件的路径 std::string base_name(const std::string& path) { } //根据一个文件的路径获取该文件的扩展名 std::string file_extension(const std::string& path) { std::string::size_type idx; idx = filename.rfind('.'); return (idx != std::string::npos) ? filename.substr(idx+) : ""; } //C++ 字符串分隔
std::vector<std::string> split(const std::string& input, const std::string& regex) {
// passing -1 as the submatch index parameter performs splitting
std::regex re(regex);
std::sregex_token_iterator
first{ input.begin(), input.end(), re, - },
last;
return{ first, last };
}