我想从html页面中的所有后台css声明中删除主机名
即
<div style="background:transparent url(http://www.some-domain.com/images/test.png) no-repeat"></div>
成为
<div style="background:transparent url(images/test.png) no-repeat"></div>
任何想法的人?
由于
答案 0 :(得分:2)
替换正则表达式&#34; http:// [^ /] *&#34;用&#34; /&#34;。
答案 1 :(得分:0)
HTTP:(?*)//图像
如果你进行正则表达式替换,你可以删除匹配,你应该没问题。
答案 2 :(得分:0)