Regex change href lowercase link

I have pages with links like:

href="FileName-One-Example.html" 

I need to execute the regex command using Notepad ++ to change the case between href=" nad end " to lower case and leave everything before and after it on the page as it is.

So the result is:

 href="FileName-One-Example.html" 
+6
source share
1 answer

This is the correct regular expression:

 Find: (href=")([^"]*) Replace: \1\L\2\L 
+12
source

Source: https://habr.com/ru/post/953266/


All Articles