博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qt正则表达式提取数据
阅读量:6715 次
发布时间:2019-06-25

本文共 2174 字,大约阅读时间需要 7 分钟。

这几天在上嵌入式课程设计,需要用到Qt,这个是信号与槽的,寒假的时候也简单学习了一些,但是没有怎么深入,又回过来看了看Qt,发现Qt的ui界面配置与Android的好像,当然Qt也可以拿来开发Android。

废话不多说了,直接上代码:

用正则表达式提取数据                                                                       

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

用正则表达式验证文本有效性                                                               

void testRegexMatch(){    QString pattern(“.*=.*”);    QRegExp rx(pattern);    bool match = rx.exactMatch(“a=3″);    qDebug() << match;                      // True    match = rx.exactMatch(“a/2″);    qDebug() << match;                      // False}

我是天王盖地虎的分割线                                                                   

当初了解到Qt是在学习MFC的时候,当时写MFC程序才叫伤心啊。

Qt一次编写,多次编译。在windows还是linux平台上,只需要换一下编译器就OK,代码都不需要怎么改的。

通过写linux上的程序,我涉及到的这个程序是arm板子上,通过串口通信读取zigbee发来的信息。主要是板子上驱动写的好,Qt写个串口通信就可以直接拿来用。

本文转自我爱物联网博客园博客,原文链接:http://www.cnblogs.com/yydcdut/p/3802561.html,如需转载请自行联系原作者

你可能感兴趣的文章
Font Awesome
查看>>
Dubbo消费者
查看>>
虚拟化中虚拟机处理器核数与物理主机cpu的关系
查看>>
org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type
查看>>
MYSQL: mysqlbinlog读取二进制文件报错read_log_event()
查看>>
随机产生由特殊字符,大小写字母以及数字组成的字符串,且每种字符都至少出现一次...
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
java21:捕鱼达人
查看>>
Zabbix 服务端搭建
查看>>
Java - 一个单例
查看>>
学习JAVA 持续更新
查看>>
Spring propertyConfigurer类
查看>>
Linux系统分析工具之uptime,top(一)
查看>>
EIGRP之DUAL(扩散更新算法)
查看>>
cacti自定义数据收集脚本,创建Data Templates和Graph Templates
查看>>
对你同样重要的非技术贴,一封有效的求职信的具体写法
查看>>
在路由器里插入和删除ACL
查看>>
我的友情链接
查看>>
OpenStack从入门到放弃
查看>>