在 Python 2.6 中。似乎字符串结尾的标记$
与\Z
组表达式不兼容。例子
import re
re.findall("\w+[\s$]", "green pears")
返回
['green ']
(所以$
有效地不起作用)。并使用
re.findall("\w+[\s\Z]", "green pears")
导致错误:
/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/re.pyc in findall(pattern, string, flags)
175
176 Empty matches are included in the result."""
--> 177 return _compile(pattern, flags).findall(string)
178
179 if sys.hexversion >= 0x02020000:
/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/re.pyc in _compile(*key)
243 p = sre_compile.compile(pattern, flags)
244 except error, v:
--> 245 raise error, v # invalid expression
246 if len(_cache) >= _MAXCACHE:
247 _cache.clear()
error: internal: unsupported set operator
为什么它会这样工作以及如何解决?