Hi,
VERSION ULTRAEDIT v12.10
I want to replace all link in a whole website to lower case:
For example:
<a href="SSsD.DOC" ----> <a href "sssd.doc"
I m using the new style regexp of ULTRAEDIT
My regexep is:
It would be replace by:
But it doesn't work and it don't understand the special character \L
I have tried also:
Can you help me please? I'm a newbie.
Regards
VERSION ULTRAEDIT v12.10
I want to replace all link in a whole website to lower case:
For example:
<a href="SSsD.DOC" ----> <a href "sssd.doc"
I m using the new style regexp of ULTRAEDIT
My regexep is:
Code: Select all
href="^(*^).^(*^)
Code: Select all
href="\L^1.\L^2
I have tried also:
Code: Select all
href="^1\L.^2\L
Regards