I'm looking for a program that can scan through text files (html files mostly) and search for certain blocks of text and replace them. I need something with wildcard character support. I'm trying to use the one in dreamweaver but it can't seem to do what I need.
Example:
Let's say I have about 50 html files. They're all the same except for the banner/header at the top. The file name for the banner is unique for each page and has no pattern:
<a href="http://www.chumby.net"><img src="aewraf.jpg"></a>
<a href="http://www.chumby.net"><img src="rtwe5v45.jpg"></a>
<a href="http://www.chumby.net"><img src="asdfwdfdsaf.jpg"></a>
I want to be able to search for something like:
<a href="http://www.chumby.net"><img src="*.jpg"></a>
and replace it.
Thanks in advance.
Example:
Let's say I have about 50 html files. They're all the same except for the banner/header at the top. The file name for the banner is unique for each page and has no pattern:
<a href="http://www.chumby.net"><img src="aewraf.jpg"></a>
<a href="http://www.chumby.net"><img src="rtwe5v45.jpg"></a>
<a href="http://www.chumby.net"><img src="asdfwdfdsaf.jpg"></a>
I want to be able to search for something like:
<a href="http://www.chumby.net"><img src="*.jpg"></a>
and replace it.
Thanks in advance.