문제

I have tried the following regular expressions to remove {anything} between brackets (and hopefully the brackets themselves)!

    mystr.remove(QRegExp("\\{(.*?)\\}"));
    mystr.remove(QRegExp("\{(.*?)\}"));

Nothing is removed

도움이 되었습니까?

해결책

.*? is invalid. Try the following code:

main.cpp

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

int main()
{
    QString mystr = "te{foo}st";
    qDebug() << mystr.remove(QRegExp("\\{(.*)\\}"));

    return 0;
}

Compilation

This may not be the exact command you need to run, so try to adjust the concept for your particular scenario.

g++ -I/usr/include/qt/QtCore -I/usr/include/qt -fPIC -lQt5Core main.cpp && ./a.out

Output: "test"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top