Python判斷字符串是否符合某一正則表達式

直接上代碼:python

#encode:u8

import re

s1 = 'adkkdk'

#判斷s1字符串是否負責都爲小寫的正則
an = re.search('^[a-z]+$', s1)
if an:
	print 'yes'
else:
	print 'no'
相關文章
相關標籤/搜索