我有以下链接的页面:
href="FileName-One-Example.html"
我需要使用记事本的正则表达式命令将href =“nad the ending”之间的任何内容更改为小写,并将页面前后的所有内容保留为原样.
结果是:
href="filename-one-example.html"
这是正确使用的正则表达式:
原文链接:https://www.f2er.com/regex/356823.htmlFind: (href=")([^"]*) Replace: \1\L\2\L