我有一个 Qstring 中可用的文件的完整路径
Qstring str = "d://output/File_012_xyz/logs";
我想从中提取数字 12。
我尝试过这样的事情
QRegularExpression rx("[1-9]+");
QRegularExpressionMatchIterator i = rx.globalMatch(str );
if (i.hasNext())
{
QRegularExpressionMatch match = i.next();
QString word = match.captured(1);
quint32 myNum = word.toUInt();
}
这总是将 myNum 返回为 0。我在这里做错了什么?