Hi
I'm the new webmaster of a website (not done by me) and I have to correct some BROKEN links DUE to the fact that they are in uppercase and the server (linux) is case sensitive.
Example of dead link:
I want to find them and correct them manually.
My regular expression is:
but it is not working please may you help me to correct it?
Regards
I'm the new webmaster of a website (not done by me) and I have to correct some BROKEN links DUE to the fact that they are in uppercase and the server (linux) is case sensitive.
Example of dead link:
Code: Select all
<a href ="../TEST/file.htm" class="super" target="_blank">
My regular expression is:
Code: Select all
<a\shref\s=\s"[a-z0-9]*[A-Z]+"
Regards