标签: python regex pattern-matching match
这是代码:
import re regex = re.compile('java') print regex.match('/something.java')
这是输出:
无
答案 0 :(得分:1)
因为python匹配从头开始匹配。看到 python -- re.match vs. re.search 如果你想使用匹配,你需要使用模式.*java。
.*java