Why is the regular expression of Qt a little different? I can match correctly in regular matching software, but not in Qt. For example.
QString tstring = "scale(1.1) rotate(180) translate(1,0)";
QRegExp re("(?<=[\\)]).");
QStringList tlist = tstring.split(re);
I want to separate the three with spaces to get the three QString "scale(1.1)", "rotate(180)" "translate(1,0)"