SyntaxFix
Write A Post
Hire A Developer
Questions
In BBEdit works this (ex.: changing the ID values to lowercase):
Search any value: <a id="(?P<x>.*?)"></a> Replace with the same in lowercase: <a id="\L\P<x>\E"></a>
<a id="(?P<x>.*?)"></a>
<a id="\L\P<x>\E"></a>
Was: <a id="VALUE"></a> Became: <a id="value"></a>
<a id="VALUE"></a>
<a id="value"></a>