I figured this might come in handy for others as well :
find:
([A-Z])(.*)
replace:
\L$1$2
--> will convert all letters in $1
and $2
to lowercase\l$1$2
--> will only convert the first letter of $1
to lowercase and leave everything else as isThe same goes for uppercase with \U
and \u