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

以下代码对通配符使用Python regex。()点字符,表示换行符以外的任何字符。

示例

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

输出结果

这给出了输出

['this', 'thus']