【Python基础】re 正则表达式
【Python基础】re 正则表达式文章目录【Python基础】re 正则表达式re.match() 方法re.sreach() 方法re.sub() 方法re.compile() 方法findall()re.finditer() 方法re.split() 方法修饰符:正则表达式模式实例re.match() 方法#语法:re.match(pattern,string,flags=0)#举例:print(re.match('www','www.abc.com'))#<re.Match o