Regex to change URL to lowercase
-
I try to replace all URLs by lower-case-versions
The search string is:
(href="https://mydomain.com/[^"]*")
which works fineThe replace string is
\L\1
which does not work. In the output the \L operator is just a \L string, but does not lowercase the \1 output.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Regex to change URL to lowercase’ is closed to new replies.