Qt中用于限制输入ip地址数据的正则表达式设置的例子

这个例子中,是使用QLineEdit加入正则表达式来实现ip地址的输入功能的,不符合规范的数据将不能输入:

    QRegExp regExpIP("((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])[\\.]){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])");
    QRegExp regExpNetPort("((6553[0-5])|[655[0-2][0-9]|65[0-4][0-9]{2}|6[0-4][0-9]{3}|[1-5][0-9]{4}|[1-9][0-9]{3}|[1-9][0-9]{2}|[1-9][0-9]|[0-9])");
    QRegExp regExpChannel("[0-5]");

    ui->lineEdit_locIP->setValidator(new QRegExpValidator(regExpIP,this));
    ui->lineEdit_subNetMask->setValidator(new QRegExpValidator(regExpIP,this));
    ui->lineEdit_GatewayIP->setValidator(new QRegExpValidator(regExpIP,this));
    ui->lineEdit_serIP->setValidator(new QRegExpValidator(regExpIP,this));
    ui->lineEdit_serPort->setValidator(new QRegExpValidator(regExpNetPort,this));
    ui->lineEdit_rfChannel->setValidator(new QRegExpValidator(regExpChannel,this));


你可能感兴趣的:(QT,正则表达式)