Regex:匹配除特定模式之外的所有内容我需要一个能匹配一切的正则表达式但以特定模式开头的字符串(特别是index.php接下来会发生什么,就像index.php?id=2342343)
4 回答
冉冉说
TA贡献1877条经验 获得超1个赞
在python中:
>>> import re
>>> p='^(?!index\.php\?[0-9]+).*$'
>>> s1='index.php?12345'
>>> re.match(p,s1)
>>> s2='index.html?12345'
>>> re.match(p,s2)
<_sre.SRE_Match object at 0xb7d65fa8>
添加回答
举报
0/150
提交
取消