text - Edit multiple HTML Files -


i have 90 html files audio file played (wrong link), need change src of audio file in each 1 of these files.

from

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

to:

file 1:

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

file 2:

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

...

any suggestions automated approach?

later edit:

the new src different each file... possibilities fill automated each file? file1 -> src1, file2 -> src2 ...

notepad ++ has search , replace functions use here.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -