我有各种这样引用的图像:
src="http://myblog.files.example.com/2011/08/image-1.jpg"
src="http://myblog.files.example.com/2010/05/image-2.jpg"
src="http://myblog.files.example.com/2012/01/image-3.jpg"
如您所见,图像路径中唯一发生变化的是末尾的数字(日期)。我想做的只是将所有图像的路径更改为:
/sites/default/files/blog-images/
...所以他们都会像:
src="/sites/default/files/blog-images/image-1.jpg"
src="/sites/default/files/blog-images/image-2.jpg"
src="/sites/default/files/blog-images/image-3.jpg"
我想知道是否有办法使用正则表达式或其他方法来做到这一点?路径中有数百张具有不同编号的图像,因此手动执行此操作并不理想。
完整的示例代码行:
<a href="http://myblog.files.example.com/2011/07/myimage-1.jpg">
<img class="alignright size-medium wp-image-423" title="the title" src="http://myblog.files.example.com/2011/07/myimage-1.jpg" alt="the alt" width="300" height="199" />
</a>