我希望能够匹配一些国际化字符的 URL 请求,例如/Comisión
. 这是我的设置:
class Application(tornado.web.Application):
def __init__(self):
handlers = [
'''some handlers, and then this: '''
(r"/([\w\:\,]+)", InternationalizedHandler)
]
tornado.web.Application.__init__(self, handlers, **settings)
但是在 Tornado 中设置语言环境似乎不是正确的解决方案。如何设置正则表达式来捕获é、å、µ等字符?会改变re
python中的模式吗?