Qt使用正则表达式从字符串中提取数值
QStringList getNumListFromStr(const QString& str){ QRegExp rx("-?[1-9]\\d*\\.\\d*|-?0\\.\\d*[1-9]\\d*|-?\\d+"); QStringList lst; int pos=0; while((pos=rx.indexIn(str,pos))!=-1) ...