您知道如何计算 a 中可能参数的数量QString
吗?
我想做类似的事情:
int argumentCount = countArguments(QString("This is the %1 argument, this is the %2 one")`);
结果应该在哪里argumentCount == 2
。
您可以使用正则表达式和QString::count
函数:
QString str1("%1%2 test test %3 %4 %555");
int n = str1.count(QRegExp("%\\d+"));//n == 5
更新: 因为 QString 的 arg 数字可以在 1-99 范围内,所以可以使用这个 reg-exp:
QString str1("%1%2 test test %3 %4 %555");
int n = str1.count(QRegExp("%\\d{1,2}(?!\\d)"));//n == 4