Question

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

Was it helpful?

Solution

.*? 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"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top