I am trying to build a QRegEx logic to split number bullet. I tried but couldn't succeed.
sample code:
QString query("1. Ravi Gupta.Pari.Paagal");
QStringList list = query.split(QRegularExpression("\\(.*?\\)"));
qDebug()<<"Output: "<<list;
I am using QRegEx first time. Looking for some help here.
Sample text is --> "1. Ravi Gupta.Pari.Paagal"
Required output should be --> "Ravi Gupta.Pari.Paagal" (without number bullet)