我面临一个奇怪的问题。
首先,这是我的代码:
#ifndef REGEX_H
#define REGEX_H
#include <regex>
/****************************** REGEX *************************/
class MyRegex {
regex reg;
StrategieLitteraux* strategie;
public :
MyRegex(regex _reg, StrategieLitteraux* _strategie) : reg(_reg), strategie(_strategie) {}
virtual ~MyRegex() {}
void execute(Pile& pile,const QString& s) { strategie->execute(pile,s); }
regex getRegex() const {return reg;}
};
/*******************************************************************/
#endif // REGEX_H
我得到这个错误:
'regex'没有命名类型
我不知道我在做什么错。有人有什么主意吗 ?我以前已经使用过正则表达式,但是这次我无法使用它。谢谢
最佳答案
regex
是std
命名空间的一部分。您需要使用std::regex
。
关于c++ - 无法识别“正则表达式”类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37448281/