PyQt5 QLineEdit输入的子网字符串校验QRegExp实现

时间:2021-05-22

自己编写的用于对lineEdit编辑框输入的子网,例如:192.168.60.1/24字符串校验是否合规。

# 限制lineEdit编辑框只能输入./字符和数字reg = QRegExp('[0-9./]+$')validator = QRegExpValidator(self)validator.setRegExp(reg)self.lineEditSubNet.setValidator(validator) def SubnetVerification(self, strTempSubNet): """ 对输入的子网字符串进行校验 """ # 对输入的交换机子网地址及子网掩码格式进行校验 if strTempSubNet.count('/') == 1: pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False strListNet = strTempSubNet.split('/') if strListNet[0] != '' and strListNet[1] != '': pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False self.strIP = strListNet[0] self.strSubMaskNum = strListNet[1] # print(self.strIP) # print(self.strSubMaskNum) if 1 <= int(self.strSubMaskNum, 10) <= 32: pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False # 对输入的交换机子网地址进行校验 # 判断是否符合IP地址中有3个. if self.strIP.count('.') == 3: pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False strList = self.strIP.split(".") # print(strList) if strList[0] != '' and strList[1] != '' and strList[2] != '' and strList[3] != '': pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False nList = list(map(int, strList)) if 0 <= nList[0] <= 255 and 0 <= nList[1] <= 255 and 0 <= nList[2] <= 255 and 0 <= nList[3] <= 255: pass else: # 警告信息框 win32api.MessageBox(0, "请输入正确的子网,例:192.168.60.1/24", "温馨提示", win32con.MB_ICONWARNING) return False return True

到此这篇关于PyQt5 QLineEdit输入的子网字符串校验QRegExp实现的文章就介绍到这了,更多相关PyQt5 QLineEdit校验QRegExp内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章