摘要:
一:常用匹配模式表 二:详解 import re # 匹配字母、数字、下划线 print(re.findall('\w','aAbc123_*()-=')) # ['a', 'A', 'b', 'c', '1', '2', '3', '_'] # 匹配非字母、数字、下划线 print(re.find 阅读全文
posted @ 2020-04-01 21:09
于~得~水
阅读(553)
评论(0)
推荐(0)
2020年4月1日
ヾ(≧O≦)〃嗷~