I want to find all places which start with href="
and ends with "
Matches:
<li><a href="Blah/Index.html">Blah</a></li>
<li><a href="/blah/Index.html">Blah</a></li>
<li><a href="../Blah/index.html">Blah</a></li>
<li><a href="../Foo/Index.html">Foo</a></li>
The expected result after the rename
<li><a href="blah/index.html">Blah</a></li>
<li><a href="/blah/index.html">Blah</a></li>
<li><a href="../blah/index.html">Blah</a></li>
<li><a href="../foo/index.html">Foo</a></li>
My regex expression which I build doesn't work:
^href".*\."$
And I have no idea if its possible to change the all found occurrences to the lowercase using global search in VS Code? If it's not possible can you give me some alternative, please? Cheers