Convert links to lowercase
Posted: Fri Jul 06, 2007 3:30 am
The following script to change all links to lowercase is incorrect: Why??? The scripts selects the links correctly but then replace them with this: href="\L\E"
Change this:
href="All-Links-On-My-Site.html"
To this:
href="all-links-on-my-site.html"
Find:
[ \t\r\n]*href[ \t\r\n]*=[ \t\r\n]*"(.*)html"
Replace:
href="\L\1\E"
Change this:
href="All-Links-On-My-Site.html"
To this:
href="all-links-on-my-site.html"
Find:
[ \t\r\n]*href[ \t\r\n]*=[ \t\r\n]*"(.*)html"
Replace:
href="\L\1\E"