用正则表达式验证文本有效性
void testRegexMatch()
{
QString pattern(".*=.*");
QRegExp rx(pattern);
bool match = rx.exactMatch("a=3");
qDebug() << match; // True
match = rx.exactMatch("a/2");
qDebug() << match; // False
}
QLineEdit 限制整数
m_LineEditIterate = new QLineEdit();
m_LineEditIterate->setFixedWidth(100);
m_LineEditIterate->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
m_LineEditIterate->setText("2");
m_LineEditIterate->setValidator(new QIntValidator(1, 9, m_LineEditIterate));
QRegExp double_rx100("100([0-9]{0,2}[\.][0-9]{1,3})");
QRegExp double_rx10("10([0-9]{0,4}[\.][0-9]{1,3})");
QRegExp double_rx10("10([0-9]{0,1}[\.][0-9]{1,3})");
m_LineEditDensity = new QLineEdit;
m_LineEditDensity->setValidator(new QRegExpValidator(double_rx100, m_LineEditDensity));
m_LineEditParA = new QLineEdit;
m_LineEditParA->setValidator(new QRegExpValidator(double_rx10, m_LineEditParA));
m_LineEditParB = new QLineEdit;
m_LineEditParB->setValidator(new QRegExpValidator(double_rx10, m_LineEditParB));
QRegExp regx("[a-zA-Z0-9]+$");
QValidator *validator = new QRegExpValidator(regx, lined );
lined->setValidator( validator );
你可以利用利用正则表达式从一个字符串里提取特定的字段或数据。例如,你可以用以下代码从"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");
qDebug() << s;
// ## 设置身份证和联系电话只能输入数字
QRegExp regx("[0-9]+$");
QValidator * validator = new QRegExpValidator(regx, ui->cidLineEdit);
ui->cidLineEdit->setValidator(validator);
ui->cphoneLineEdit->setValidator(validator);
":(\\d+)\\.(\\d+)\\s+(\\w*\\s*\\w*\\s*\\d*\\,\\s*)*(\\w*\\s*)*(parent\\[[01]\\]\\s+\\-{0,1}\\d+)*(\\w*\\d*\\.\\d*\\w*\\s*\\d*)*Local\\s+time"
"parent\\[0\\]\\s+\\-{0,1}(\\d+)\\b"
"mac\\s+neigh\\s+0\\,\\s+addr\\s+(\\d+)\\b"
"ROOT\\s+receive\\s+\\dada\\s+\\origin\\s+(\\d+)\\s+(\\d+)\\b"
表达式 | 说明 |
\r, \n | 代表回车和换行符 |
\t | 制表符 |
\\ | 代表 "\" 本身 |
\^ | 匹配 ^ 符号本身 |
\$ | 匹配 $ 符号本身 |
元字符 | 说明 |
. | 匹配除了换行符以外的任意字符 |
\w | 匹配字母、数字、下划线、汉字 |
\s | 匹配任意的空白符 |
\b | 单词的开始或结尾 |
\~ | 匹配字符串的开始 |
$ | 匹配字符串的结束 |
如:
\ba\w*\b :匹配以字母a开头的单词——先是某个单词开始处(\b),然后是字母a,然后是任意数量的字母或数字(\w*),最后是单词结束处(\b)。
\d+ :匹配1个或更多连续的数字。这里的+是和*类似的元字符,不同的是*匹配重复任意次(可能是0次),而+则匹配重复1次或更多次。
\b\w{6}\b: 匹配刚好6个字符的单词。
表达式 | 说明 |
[ ] | 包含一系列字符 |
[^ ] | 包含之外一系列字符 |
[ab5@]: 匹配 "a" 或 "b" 或 "5" 或 "@"
[^abc]: 包含abc之外的任意字符
[f-k]: f-k之间的任意字符
表达式 | 说明 |
{n} | 表达式重复n次,比如:"\w{2}" 相当于 "\w\w";"a{5}" 相当于 "aaaaa" |
{m,n} | 表达式至少重复m次,最多重复n次,比如:"ba{1,3}"可以匹配 "ba"或"baa"或"baaa |
{m,} | 表达式至少重复m次,比如:"\w\d{2,}"可以匹配 "a12","_456","M12344"... |
? | 匹配表达式0次或者1次,相当于 {0,1},比如:"a[cd]?"可以匹配 "a","ac","ad" |
+ | 表达式至少出现1次,相当于 {1,},比如:"a+b"可以匹配 "ab","aab","aaab"... |
* | 表达式不出现或出现任意次,相当于 {0,},比如:"\^*b"可以匹配 "b","^^^b"...*前面的字符出现的次数任意 |