Translation - Μετάφραση

Resources, Technical Assistance and Technology News => Translator resources => Tips on Using Computers => Topic started by: spiros on 09 Apr, 2021, 13:14:01

Title: Change first capital letter in the beginning of a line to lowercase (regex)
Post by: spiros on 09 Apr, 2021, 13:14:01
Change first capital letter in the beginning of a line to lowercase

Find
Code: [Select]
^(.)Replace
Code: [Select]
\L\1
(with Match Case checked, works in EmEditor)