我需要确定文件是否经过 PCL 编码。所以我正在查看第一行是否以 ESC 字符开头。如果您知道更好的方法,请随时提出建议。这是我的代码:
bool pclFlag = false;
if (containStr(jobLine, "^\\e")) {
pclFlag=true;
}
bool containStr(const string& s, const string& re)
{
static const boost::regex e(re);
return regex_match(s, e);
}
pclFlag 未设置为 true。