qt怎么獲取字符串中的數(shù)值

qt
小億
475
2024-01-12 21:56:35
欄目: 編程語言

在Qt中,您可以使用QRegExp、QStringList或QString的一些內(nèi)置方法來獲取字符串中的數(shù)值。

  1. 使用QRegExp:
QString text = "Hello123World456";
QRegExp regex("\\d+");  // 匹配一個(gè)或多個(gè)數(shù)字
int pos = 0;
while ((pos = regex.indexIn(text, pos)) != -1) {
    QString number = regex.cap(0);  // 獲取匹配到的數(shù)字
    // 處理數(shù)字
    qDebug() << number;
    pos += regex.matchedLength();
}
  1. 使用QStringList:
QString text = "Hello 123 World 456";
QStringList list = text.split(QRegExp("\\D+"));  // 使用非數(shù)字字符分割字符串
foreach (const QString &number, list) {
    if (!number.isEmpty()) {
        // 處理數(shù)字
        qDebug() << number;
    }
}
  1. 使用QString的toInt()或toDouble()方法:
QString text = "Hello 123 World 456";
QString number;
int pos = 0;
while (pos < text.length()) {
    if (text[pos].isDigit()) {  // 找到數(shù)字的起始位置
        int startPos = pos;
        while (pos < text.length() && text[pos].isDigit()) {
            pos++;
        }
        number = text.mid(startPos, pos - startPos);  // 截取數(shù)字
        // 處理數(shù)字
        qDebug() << number;
    }
    pos++;
}

請(qǐng)根據(jù)您的實(shí)際需求選擇適合您的方法。

0