二,re模塊操做正則表達式
在Python中須要經過正則表達式對字符串進行匹配的時候,能夠使用一個模塊,名字爲re編輯器
#coding=utf-8 # 導入re模塊 import re # 使用match方法進行匹配操做 result = re.match(正則表達式,要匹配的字符串) # 若是上一步匹配到數據的話,能夠使用group方法來提取數據 result.group()
#coding=utf-8 import re result = re.match("itcast","itcast.cn") result.group()
運行結果爲:itcast
ide
e.match() 可以匹配出以xxx開頭的字符串spa