摘要: import re s = 'hello123world' result = re.search(r'\d{3}',s).group() print(result) re模块有3种匹配方式 match 从头匹配 search 搜索 findall 查找所有,返回列表 re.match(pattern 阅读全文
posted @ 2024-11-07 16:12 xx_cnblog 阅读(2) 评论(0) 推荐(0) 编辑