Is there a way to do a find and replace (regex) all uppercase characters in the matching strings with lowercase ones? Preferably in VS Code or IntelliJ I already have my reg
.* button and enter your RegExTransform to LowercaseIf you want to modify only part of the matching text you have to do 1 step extra.
If you press Ctrl + Shift + L in the Find dialog it selects the full matching text but you can't move the (multi) cursors and make a partial selection.
After entering the regex, VSC will show you which parts will match the find.
Now you can move the (multi) cursors and make a partial selection and apply the needed transform.