在我的 C++ 程序中,我有字符串
string s = "/usr/file.gz";
在这里,如何使脚本检查.gz
扩展名(无论文件名是什么)并将其拆分为"/usr/file"
?
怎么样:
// Check if the last three characters match the ext.
const std::string ext(".gz");
if ( s != ext &&
s.size() > ext.size() &&
s.substr(s.size() - ext.size()) == ".gz" )
{
// if so then strip them off
s = s.substr(0, s.size() - ext.size());
}
如果你能够使用 C++11,你可以使用#include <regex>
,或者如果你坚持使用 C++03,你可以使用 Boost.Regex(或 PCRE)来形成一个正确的正则表达式来分解文件名的各个部分你要。另一种方法是使用 Boost.Filesystem 正确解析路径。
void stripExtension(std::string &path)
{
int dot = path.rfind(".gz");
if (dot != std::string::npos)
{
path.resize(dot);
}
}