Qt之正则表达式 - QRegExp

作者:破砂锅

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

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值