我编写了一个程序来向 Python 正则表达式添加(有限的)unicode 支持,虽然它在 CPython 2.5.2 上运行良好,但在 PyPy(1.5.0-alpha0 1.8.0,实现 Python 2.7.1 2.7.2)上运行良好,两者都在 Windows XP 上运行(编辑:如评论中所见,@dbaupp 可以在 Linux 上正常运行)。我不知道为什么,但我怀疑这与我对u"
and的使用有关ur"
。完整来源在这里,相关位是:
# -*- coding:utf-8 -*-
import re
# Regexps to match characters in the BMP according to their Unicode category.
# Extracted from Unicode specification, version 5.0.0, source:
# http://unicode.org/versions/Unicode5.0.0/
unicode_categories = {
ur'Pi':ur'[\u00ab\u2018\u201b\u201c\u201f\u2039\u2e02\u2e04\u2e09\u2e0c\u2e1c]',
ur'Sk':ur'[\u005e\u0060\u00a8\u00af\u00b4\u00b8\u02c2-\u02c5\u02d2-\u02df\u02...',
ur'Sm':ur'[\u002b\u003c-\u003e\u007c\u007e\u00ac\u00b1\u00d7\u00f7\u03f6\u204...',
...
ur'Pf':ur'[\u00bb\u2019\u201d\u203a\u2e03\u2e05\u2e0a\u2e0d\u2e1d]',
ur'Me':ur'[\u0488\u0489\u06de\u20dd-\u20e0\u20e2-\u20e4]',
ur'Mc':ur'[\u0903\u093e-\u0940\u0949-\u094c\u0982\u0983\u09be-\u09c0\u09c7\u0...',
}
def hack_regexp(regexp_string):
for (k,v) in unicode_categories.items():
regexp_string = regexp_string.replace((ur'\p{%s}' % k),v)
return regexp_string
def regex(regexp_string,flags=0):
"""Shortcut for re.compile that also translates and add the UNICODE flag
Example usage:
>>> from unicode_hack import regex
>>> result = regex(ur'^\p{Ll}\p{L}*').match(u'áÇñ123')
>>> print result.group(0)
áÇñ
>>>
"""
return re.compile(hack_regexp(regexp_string), flags | re.UNICODE)
(在 PyPy 上,“示例用法”中没有匹配项,所以result
是None
)
重申一下,程序运行良好(在 CPython 上):Unicode 数据似乎正确,替换按预期工作,使用示例运行正常(通过doctest
和直接在命令行中键入)。源文件编码也是正确的,coding
头文件中的指令似乎可以被Python识别。
关于 PyPy 的“不同”行为是否会破坏我的代码的任何想法?许多事情浮现在我的脑海(无法识别coding
的标头、命令行中的不同编码、对r
and的不同解释u
),但就我的测试而言,CPython 和 PyPy 的行为似乎相同,所以我对下一步该尝试什么一无所知。