摘要: 一、正则介绍 二、常用匹配模式 1 # 匹配模式 2 #一对一的匹配 3 # 'hello'.replace(old,new) 4 # 'hello'.find('pattern') 5 6 #正则匹配 7 import re 8 #\w与\W 9 print(re.findall('\w','he 阅读全文
posted @ 2022-04-21 13:41 _yessir 阅读(78) 评论(0) 推荐(0) 编辑