QRegExpValidator

简介

用于根据正则表达式检查字符串。

用法

QRegExpValidator使用正则表达式(QRegExp )来确定输入字符串是可接受的、中间的还是无效的。QRegExp 可以在构建QRegExpValidator时提供,也可以在稍后的时候提供。

// regexp: optional '-' followed by between 1 and 3 digits
QRegExp rx("-?\\d{1,3}");
QValidator *validator = new QRegExpValidator(rx, this);
QLineEdit *edit = new QLineEdit(this);
edit->setValidator(validator);
ui->edtDevComID->setValidator(new QRegExpValidator(QRegExp("[0-9a-fA-F]{16}"),this));
上一篇:iOS之 git 简单使用


下一篇:Linux命令行监控网口流量