标签: python django
我在django中有一个简单的表格,我通过GET提交。
现在我在文本框dsadsadsadsadsa4325435;';',,,.,##$^*(((&(
dsadsadsadsadsa4325435;';',,,.,##$^*(((&(
在我的功能中,我有这一行
re.search(data, alltext)
现在我收到错误nothing to repeat。
nothing to repeat
我如何filter / escape数据,以便我的该功能可以正常运行
filter / escape
答案 0 :(得分:1)
使用re.escape(your_string)来转义任何在正则表达式中具有特殊含义的字符。
re.escape(your_string)