你可以使用QRegExp::exactMatch来判断一个字符串是否符合一个pattern。
{
QStringpattern(“.*=.*”);
QRegExprx(pattern);
boolmatch=rx.exactMatch(“a=3″); qDebug()<<match;//True
原文链接:https://www.f2er.com/regex/359563.html你可以使用QRegExp::exactMatch来判断一个字符串是否符合一个pattern。
{
QStringpattern(“.*=.*”);
QRegExprx(pattern);
boolmatch=rx.exactMatch(“a=3″); qDebug()<<match;//True
原文链接:https://www.f2er.com/regex/359563.html