如何使用正则表达式匹配没有拇指图像的所有图像
如何使用 regexp 匹配没有缩略图的所有图像?
hi.gif
thumb.gif
hello.gif
结果应该是:
hi.gif
hello.gif
我使用 .+(gif|GIF|jpg|JPG)
来匹配所有图像
How can I match all images without thumb image using regexp ?
hi.gif
thumb.gif
hello.gif
Result should be :
hi.gif
hello.gif
I am using .+(gif|GIF|jpg|JPG)
to match all images
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 -ve 前瞻断言:
Rubular 链接
Regexr 链接
You can use -ve lookahead assertion as:
Rubular link
Regexr link
从一开始就进行消极的展望:
Put a negative look-ahead at the start:
您可以使用此正则表达式:
同时添加选项 Multiline。
You can use this regex:
Also add options Multiline.