QT 正規表示式 通常用法

pamxy發表於2013-07-02

轉自:http://hi.baidu.com/kxw102/item/df64ea3ef228f8fadf22213e

Qt裡對大名鼎鼎的正規表示式有很好的支援,使用QRegExp類,你可以非常快的完成對文字的驗證、資料提取、替換。Qt的SDK包裡還提供了regexp的GUI小工具,方便你對正規表示式的驗證。

本文在Qt4.5.3下驗證通過。

用正規表示式驗證文字有效性

你可以使用QRegExp::exactMatch來判斷一個字串是否符合一個pattern。

void testRegexMatch()
{
     QString pattern(".*=.*");
     QRegExp rx(pattern);

    bool match = rx.exactMatch("a=3");
     qDebug() << match;                      // True

     match = rx.exactMatch("a/2");
     qDebug() << match;                      // False
}
用正規表示式提取資料

你可以利用利用正規表示式從一個字串裡提取特定的欄位或資料。例如,你可以用以下程式碼從"a=100"裡提取"a"和"100"。

void testRegexCapture()
{
     QString pattern("(.*)=(.*)");
     QRegExp rx(pattern);

     QString str("a=100");
    int pos = str.indexOf(rx);              // 0, position of the first match.
                                            // Returns -1 if str is not found.
                                            // You can also use rx.indexIn(str);
     qDebug() << pos;
    if ( pos >= 0 )
     {
         qDebug() << rx.matchedLength();     // 5, length of the last matched string
                                            // or -1 if there was no match
         qDebug() << rx.capturedTexts();     // QStringList("a=100", "a", "100"),
                                            //    0: text matching pattern
                                            //    1: text captured by the 1st ()
                                            //    2: text captured by the 2nd ()

         qDebug() << rx.cap(0);              // a=100, text matching pattern
         qDebug() << rx.cap(1);              // a, text captured by the nth ()
         qDebug() << rx.cap(2);              // 100,

         qDebug() << rx.pos(0);              // 0, position of the nth captured text
         qDebug() << rx.pos(1);              // 0
         qDebug() << rx.pos(2);              // 2
     }
}用正規表示式修改文字

你可以把字串中匹配的字串替換成"一般字串"

     QString s = "a=100";
     s.replace(QRegExp("(.*)="), "b=");
     qDebug() << s;                          // b=100

或是把字串中匹配的字串替換"提取的字串"

     QString s = "a=100";
     s.replace(QRegExp("(.*)=(.*)"), "\\1\\2=\\2");  // \1 is rx.cap(1), \2 is rx.cap(2)
     qDebug() << s;                                  // a100=100把正規表示式轉換成C/C++ string的小工具

沒有Python的"""或是C#的@。標準的正規表示式因為出現一些特殊字元,在C/C++程式碼裡使用時,必須進行轉換。例如:"(\S+)\s*=\s*(\S*)"必須轉換成"(\\S+)\\s*=\\s*(\\S*)"

Qt的SDK裡包含一個很幫的GUI工具,可以方便我們進行這類轉換並測試你的表示式。在Linux下,它的路徑是/usr/local/Trolltech/Qt-4.5.3/examples/tools/regexp/regexp

相關文章