如何在 Python 正则表达式中使用通配符?


以下代码使用 Python regex .()点字符作为通配符,它表示除换行符之外的任何字符。

示例

import re
rex = re.compile('th.s')
l = "this, thus, just, then"
print rex.findall(l)

输出

它给出了以下输出

['this', 'thus']

更新于: 2020 年 2 月 20 日

2 千 + 次观看

开启你的职业生涯

完成课程获得认证

开始
广告