如何在 Python 正则表达式中使用通配符?
以下代码使用 Python regex .()点字符作为通配符,它表示除换行符之外的任何字符。
示例
import re rex = re.compile('th.s') l = "this, thus, just, then" print rex.findall(l)
输出
它给出了以下输出
['this', 'thus']
广告
以下代码使用 Python regex .()点字符作为通配符,它表示除换行符之外的任何字符。
import re rex = re.compile('th.s') l = "this, thus, just, then" print rex.findall(l)
它给出了以下输出
['this', 'thus']