标签: python regex bottle
我正在尝试使用@route来匹配任何字母,符号和/或特殊字符的字符串。
这就是我所拥有的:
@route('/create/<mypath:re:[#!@$%^&*()\_\-.,A-Za-z0-9//:]+>')
问题是一旦达到哈希符号,就会忽略字符串的其余部分。
例如:test123!!!.....he#llo!仅匹配:test123!!!.....he
test123!!!.....he#llo!
test123!!!.....he
有什么想法吗? 谢谢!
答案 0 :(得分:0)
嗯,这是我的问题的答案:http://osdir.com/ml/python-bottle-general/2011-11/msg00012.html