I think I am right in asuming that RegEx can do this job, I'm just not sure how I would do it!
Basically I have a number of links on my website that are in the format of:
<a href="EXAMPLE/Example.html">Example</a>
I need some code that will transform the href value so that it gets outputed in lowercase, but that does not affect the anchor text . E.g:
<a href="example/example.html">Example</a>
Is this possible? And if so, what would be the code to do this?