change contents of a href tag to lower case

liunx

Guest
I need to change the contents of the a href Html tag from upper case to lower case for 10,000 html files. Is there a readymade program/utility/tool developed to make the necessary changes.<br />
<br />
For example I need to change<br />
a href = <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/archive/index.php/">http://www.webdeveloper.com/forum/archive/index.php/</a><!-- m -->"ABC.html" to a href = "abc.html"<!--content-->No, why would you have 10,000 files with the same link? HTML is usually not case sensitve but you could make a redirecting page if it doesn't work<!--content-->I don't know that there's one specifically for that purpose but that's the kind of job that Perl, AWK, ed, sed and a host of other Unix-born text processing tools are used for every day.<!--content-->Originally posted by IncaWarrior <br />
HTML is usually not case sensitveHas nothing to do with the language at hand but rather, the server operating system. In any case, Ray is right. Try asking in the Perl forum.<!--content-->
 
Back
Top