如何匹配不含有某个字符串的输入。如:不能含有字符串“http”匹配href="admin/index.html"不匹配href="http://www.baidu.com/admin/index.html"应该怎么写呢? 正则里面的反义只是针对单字符的,对多字符没效,想不到什么办法
2 回答
翻阅古今
TA贡献1780条经验 获得超5个赞
使用零宽度断言就可以实现:
href="((?!http)\S+)"
仅可匹配 href="admin/index.html"
其中 $0 = href="admin/index.html"
$1 = admin/index.html
- 2 回答
- 0 关注
- 679 浏览
添加回答
举报
0/150
提交
取消