pyqt 正则表达式例子学习
def rex01(self):
username=QtCore.QRegExp('[a-zA-Z0-9_]{2,10}')
self.names.setValidator(QtGui.QRegExpValidator(username,self))
mainname=QtCore.QRegExp("^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$")
self.mains.setValidator(QtGui.QRegExpValidator(mainname,self))
pooh=QtCore.QRegExp('[0-9]{11}|[\d]{,4}-[\d]{,8}')
self.poohs.setValidator(QtGui.QRegExpValidator(pooh,self))
names=QtCore.QRegExp("[^\d]+[^\u4E00-\u9FA5]*[\d]+([^\u4E00-\u9FA5]\d*)*")
self.addrs.setValidator(QtGui.QRegExpValidator(names,self))
#正则1和2
def TextRe(self):
re1=QRegExp('[\w_]{6,20}')
self.mailEdit_2.setValidator(QRegExpValidator(re1,self))
self.re2=QRegExp('(pop|smtp)*[a-zA-Z.]*[\d]{3,7}[.](com|com.cn|cn)$')
self.mailEdit.setValidator(QRegExpValidator(self.re2,self))
def _text2(self):
import string as s
text1=s.letters
text=self.mailEdit_2.text()
if text.isEmpty():
self.Prompt_2.setText(u'邮箱地址不能为空')
else:
if len(text)<6:
self.Prompt_2.setText(u'邮箱地址长度小于6')
else:
self.Prompt_2.setText(u'邮箱地址合法')
if unicode(text)[0] not in text1:
self.Prompt_2.setText(u'邮箱地址必须以字母开头')
#需要正则
def _text1(self):
text=self.mailEdit.text()
if text.isEmpty():
self.Prompt.setText(u'邮箱服务器不能为空')
else:
pop1='pop|smtp'
import re
match=re.search(pop1,unicode(text))
if not match:
self.Prompt.setText(u'必须以pop|smtp开头')
else:
if len(text)<10:
self.Prompt.setText(u'长度过小')
else:
self.Prompt.setText(u'邮箱服务器合法')
补充内容
匹配普遍意义的url
^(https?://)?([\da-z\.-]+)\.([a-z\.]{2,6})([/\w \.-]*)*/?$
匹配cn的url
^(https?://)?([\da-z\.-]+)\.cn([/\w \.-]*)*/?$
匹配google.cn的url
^(https?://)?google\.cn([/\w \.-]*)*/?$ 网址:http://segmentfault.com/q/1010000000135951
pyqt 正则表达式例子学习的更多相关文章
- pyqt QTreeWidget例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' from PyQt4.QtGui import * from Py ...
- pyqt columnView例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' from PyQt4.QtGui import * from Py ...
- pyqt QTableView例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' from PyQt4.QtGui import * from Py ...
- pyqt QTableWidget例子学习(重点)
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' from PyQt4.QtGui import * from PyQ ...
- pyqt 托盘例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' from PyQt4.QtGui import * from PyQ ...
- pyqt tabWidget例子学习1
from PyQt4 import QtGui from PyQt4 import QtCore from PyQt4.QtCore import pyqtSlot,SIGNAL,SLOT impor ...
- pyqt 配置文件例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' import sys,datetime from PyQt4.QtC ...
- pyqt 自定义例子学习
# -*- coding: utf-8 -*- # python:2.x __author__ = 'Administrator' import sys from PyQt4.QtCore impor ...
- 数百个 HTML5 例子学习 HT 图形组件 – 3D建模篇
http://www.hightopo.com/demo/pipeline/index.html <数百个 HTML5 例子学习 HT 图形组件 – WebGL 3D 篇>里提到 HT 很 ...
随机推荐
- python socket学习
import socket localip=socket.gethostbyname(socket.gethostname()) print (localip) iplist=socket.getho ...
- UGUI 全方位了解
随着 unity3d 4.6 ~ 5.x + 新 UI 系统最终与大家见面了.这篇文章将不会介绍怎样使用button.滚动栏之类的UI控件.这些内容能够參考Unity Manual:这篇文章的重点是. ...
- Learning Lua Programming (3) iMac下搭建Lua脚本最好的编码环境(代码补全,编译运行)
这篇文章参考自http://blog.sina.com.cn/s/blog_991afe570101rdgf.html,十分感谢原作者的伟大创造,本人亲测可行. 这篇文章记录一下如何在MAC系统环境下 ...
- web工程调用hadoop集群1.2
本实例代码在lz的资源中有上传,有需要的可以参考(下载后的文件解压后有两个,一个直接导入myeclipse工程,另外的jar放在hadoop的lib下面,只需修改Utils中的ip即可运行该程序): ...
- [Redux] Extracting Presentational Components -- TodoApp
Finally, I just noticed that the to-do app component doesn't actually have to be a class. I can turn ...
- 基于注解的Spring MVC
1.加入�jar 2.web.xml配置: <?xml version="1.0" encoding="UTF-8"?> <web-app v ...
- getInitParameter()
getInitParameter()方法是在GenericServlet接口中新定义的一个方法,用来调用初始化在web.xml中存放的参量.在web.xml配置文件中一个servlet中参量的初始 ...
- CSS transform(变形)和transform-origin(变形原点)
transform(变形)和transform-origin(变形原点)的说明: 目前这两个属性得到了除去ie以外各个主流浏览器webkit,firefox,opera的支持,属性名分别为 -webk ...
- SQL Server Profile:使用方法和指标说明
SQL Server Profiler的中文意思是SQL Server事件探查,一个Sql的监视工具,可以具体到每一行Sql语句,每一次操作,和每一次的连接.感觉这个工具的作用还是很大的,给大家分享一 ...
- C#图像处理(4):图像的剪裁
图像的剪裁方法,从中间剪裁返回剪裁后的左右两页,方法实现如下: /// <summary> /// 图片裁剪,返回左右两页 /// </summary> /// <par ...