regex模块:可变宽度后向
除了HamZa的答案之外,对于Python中任何复杂的正则表达式,我建议使用
regexMatthew
Barnett出色的模块。它支持无限查找-与.NET和JGSoft一起使用的无限引擎之一。
这使您可以执行以下 *** 作:
import regexif regex.search("(?<!right |left )shoulder", "left shoulder"): print("It matches!")else: print("Nah... No match.")
s+如果您愿意,也可以使用。
输出:
It matches!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)