- {
- /**
- * \s 表示一个\t、一个\n等
- * \s Matches a whitespace character (QChar::isSpace()).
- * \s* 多个
- * \s+ 至少一个
- * \s{2} 两个
- * \s{1,2} 一个到两个
- * \w 表示一个字母、一个数字、一个汉字等
- * \w Matches a word character (QChar::isLetterOrNumber(), QChar::isMark(), or '_').
- * \w* 多个
- * \w+ 至少一个
- * \w{2} 两个
- * \w{1,2} 一个到两个
- * () 表示提取的位置
- */
- QString Output = "select obid from cey_bt_table where ch_billno = 'Q001' ";
- QRegExp rx(R"(select\s*(\w*)\s*from\s*(\w*)\s*where\s*(\w*)\s*=\s*'(\w*)'\s*)");
- rx.indexIn(Output);
- QStringList qsl = rx.capturedTexts();
-
- for(int i=0; i
- {
- qDebug()<<"Da Data Thing: "<< i << " Da Value Thing: " << qsl.at(i);
- }
- return 1;
- }
运行结果:
Da Data Thing: 0 Da Value Thing: "select obid from cey_bt_table where ch_billno = 'Q001' "
Da Data Thing: 1 Da Value Thing: "obid"
Da Data Thing: 2 Da Value Thing: "cey_bt_table"
Da Data Thing: 3 Da Value Thing: "ch_billno"
Da Data Thing: 4 Da Value Thing: "Q001"
实例2 mac地址相关
- {
- /**
- * \d 表示一个数字
- * \d Matches a digit (QChar::isDigit()).
- * \d+ 表示重复一次或者多次 1、12、23
- * \d* 表示重复零次或者多次 _、12、11
- * \d{2} 表示只能匹配两个字符
- */
- QString Output;
- Output="Duration: 00:01:25.65, start: 0.050000, bitrate: 5200 kb/s";
- QRegExp rx = QRegExp(R"(Duration:\s*(\d{2}:\d{2}:\d{2}.\d{2}),\s*start:\s*(\d+\.\d+),\s*bitrate:\s*(\d*)\s*kb/s)");
-
- rx.indexIn(Output);
- QStringList qsl = rx.capturedTexts();
-
- for(int i=0; i
- {
- qDebug()<<"Da Data Thing: "<< i << " Da Value Thing: " << qsl.at(i);
- }
- }
运行结果:
Da Data Thing: 0 Da Value Thing: "Duration: 00:01:25.65, start: 0.050000, bitrate: 5200 kb/s"
Da Data Thing: 1 Da Value Thing: "00:01:25.65"
Da Data Thing: 2 Da Value Thing: "0.050000"
Da Data Thing: 3 Da Value Thing: "5200"
-
相关阅读:
mysql各个锁的区别
面试官:集合使用时应该注意哪些问题?我:应该注意该注意的问题!
java微博 10 request and response
【RuoYi-Vue-Plus】学习笔记 42 - Easy Excel(二)Excel 2007(*.xlsx)导入流程分析(源码)
【C语言】Windows下的C语言线程编程详解
Pandas读取Excel文件XLRDError: Excel xlsx file; not supported
我的网站每个月给我带来了6W美元收入
【无标题】Test
Python 笔记(22)— 变量解析原则(LEGB)、浅拷贝、深拷贝
聊天机器人
-
原文地址:https://blog.csdn.net/ch593030323/article/details/128133499