1

我正在尝试在模板中匹配 %foo% 形式的字符串。上下文:目标是用存储过程返回中列 foo 的值替换 %foo%。

我不能让它工作。一开始我认为我的模板的 UTF8 编码是我麻烦的根源。但即使是下面的也失败了:

#include <QCoreApplication>
#include <QRegExp>
#include <iostream>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    QString str = "__%foo%____";


    std::cout << "with regex: %(.*)%" << std::endl;
    QRegExp re("%(.*)%",Qt::CaseInsensitive);
    re.indexIn(str);
    for(int pos = 0; pos < re.captureCount(); ++pos)
    {
        std::cout << re.cap(pos).toStdString() << std::endl;
    }

    std::cout << "with regex: \\%(.*)\\%" << std::endl;
    QRegExp re2("\\%(.*)\\%",Qt::CaseInsensitive);
    re2.indexIn(str);
    for(int pos = 0; pos < re2.captureCount(); ++pos)
    {
        std::cout << re2.cap(pos).toStdString() << std::endl;
    }

    std::cout << "with regex: %([^%])%" << std::endl;
    QRegExp re3("%([^%])%",Qt::CaseInsensitive);
    re3.indexIn(str);
    for(int pos = 0; pos < re3.captureCount(); ++pos)
    {
        std::cout << re3.cap(pos).toStdString() << std::endl;
    }

    std::cout << "with regex:  \\%([^\\%])\\%" << std::endl;
    QRegExp re4("\\%([^\\%])\\%",Qt::CaseInsensitive);
    re4.indexIn(str);
    for(int pos = 0; pos < re4.captureCount(); ++pos)
    {
        std::cout << re4.cap(pos).toStdString() << std::endl;
    }

    std::cout << "with regex: \\x25([^\\x25])\\x25" << std::endl;
    QRegExp re5("\\x25([^\\x25])\\x25",Qt::CaseInsensitive);
    re5.indexIn(str);
    for(int pos = 0; pos < re5.captureCount(); ++pos)
    {
        std::cout << re5.cap(pos).toStdString() << std::endl;
    }

    std::cout << "with regex: \\%(.*)\\%" << std::endl;
    QRegExp re6("\\%(.*)\\%",Qt::CaseInsensitive);
    re6.indexIn(str);
    for(int pos = 0; pos < re6.captureCount(); ++pos)
    {
        std::cout << re6.cap(pos).toStdString() << std::endl;
    }

    return a.exec();
}

输出:

with regex: %(.*)%
%foo%
with regex: \%(.*)\%
%foo%
with regex: %([^%])%

with regex:  \%([^\%])\%

with regex: \x25([^\x25])\x25

with regex: \%(.*)\%
%foo%

我只想捕获 foo,而不是 '%'

4

2 回答 2

1

好把每一个

int pos = 0; pos < re.captureCount(); ++pos

作为

int pos = 0; pos <= re.captureCount(); ++pos

我有输出:

with regex: %(.*)%
%foo%
foo
with regex: \%(.*)\%
%foo%
foo
with regex: %([^%])%


with regex:  \%([^\%])\%


with regex: \x25([^\x25])\x25


with regex: \%(.*)\%
%foo%
foo

cap(0) 显然匹配整个表达式

于 2013-08-12T10:08:39.173 回答
0

使用非捕获组:

QString txt="____%foo%___some%__";
QRegExp rx("(?:%)[^%]*(?:%)");
pos = rx.indexIn(txt, 0);
rx.capturedTexts().at(1); //holds foo

如果您需要所有匹配项,请使用 indexIn 循环并提供 pos+rx.matchedLenght() 而不是 0

于 2013-08-12T10:57:42.493 回答