编辑多个HTML文件

时间:2010-11-16 10:52:25

标签: html text automation text-editor

我有90个html文件播放音频文件(错误的链接),我需要更改每个文件中音频文件的src。

来自

<embed src="../audio/" autostart=false width=0 height=0 id="sound1" enablejavascript="true">

为:

文件1:

<embed src="../audio/1.mp3" autostart=false width=0 height=0 id="sound1" enablejavascript="true">

文件2:

<embed src="../audio/2.mp3" autostart=false width=0 height=0 id="sound1" enablejavascript="true">

...

有关自动化方法的任何建议吗? 谢谢

稍后编辑:

每个文件的新src都不同......是否有可能为每个文件自动填充? for file1 - &gt; src1,file2 - &gt; src2 ......

3 个答案:

答案 0 :(得分:2)

Notepad ++有一些很好的搜索和替换功能,你可以在这里使用。

答案 1 :(得分:2)

GNU sed就是您所需要的:http://www.gnu.org/software/sed/

或最终gawk:http://www.gnu.org/software/gawk/

答案 2 :(得分:1)

您使用Dreamweaver软件查找使用新音频名称替换所有文件