本文在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
没有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