在双括号QString之间只选择一个选项

时间:2013-09-26 00:56:05

标签: c++ qt qt4 qstring qregexp

我想清理QString数据以获得以下内容:

输入

[[normal]], here's [[double phrased|brackets]]

输出

normal, here's double phrased

只需选择每个子括号中的第一个元素就可以了。我不确定最佳方法是什么?

另外,我使用的是Qt 4,所以这需要由QRegExp完成。

1 个答案:

答案 0 :(得分:1)

的main.cpp

#include <QString>
#include <QDebug>
#include <QRegExp>

int main()
{
    QRegExp rx("\\[{2}([^\\]\\|]+)(\\|[^\\]\\|]+)*\\]{2}");
    QString mystr = "[[normal]], here's [[double phrased|brackets]]";

    for (int pos = 0; (pos = rx.indexIn(mystr, pos)) != -1; pos += rx.matchedLength())
        mystr.replace(pos, rx.matchedLength(), rx.cap(1));

    qDebug() << mystr;

    return 0;
}

汇编

您可能需要稍微不同的命令,但这仅供参考,以便您可以根据您的环境进行调整:

g++ -I/usr/include/qt4/QtCore -I/usr/include/qt4 -fPIC -lQtCore main.cpp && ./a.out

输出

"normal, here's double phrased"

请注意,使用Qt 5,您可能应该稍后收敛到QRegularExpression

此外,这是一个很好的例子,说明为什么在某些情况下避免正则表达式是好的。在这里编写替换功能会花费我们更少的时间,最终结果将更具可读性,因此可维护。

感谢lancif的原创灵感。