首页 > 代码库 > python 正则小例子
python 正则小例子
1 import re 2 3 s1 = ‘1 (021)8567895 90‘ 4 s2 = ‘1 021-5689564 90‘ 5 s3 = ‘1 021 4886542 90‘ 6 s4 = ‘1 0218567899 90‘ 7 s5 = ‘module-layout=\"layout-d\">\n \n \n\n<link ‘ 8 s6 = ‘module-layout=\"layout-d\n<link ‘ 9 m1 = re.findall(r‘\(\d{3}\)\d{7,8}‘,s1)10 m2 = re.findall(r‘\d*-\d{7,8}‘,s2)11 m3 = re.findall(r‘\d{2,3}[ -]?\d{1,10}‘,s4)12 m5 = re.findall(r‘module-layout=.*‘,s6,re.S)#re.S 让 . 匹配换行符
python 正则小例子
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。