正则表达式在 " 之间替换编码
我希望能够替换 style="STUFF"
我一直认为这是正确的正则表达式:
style=(")(?!")*(")
但由于某种原因不匹配。
有什么想法吗?
I want to be able to replace style="STUFF"
I keep thinking that this is the correct REGEX:
style=(")(?!")*(")
But for some reason that won't match.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试使用
style="(.*?)"
代替。Try
style="(.*?)"
instead.