I want to capitalize the first letter of each line in a text. So, I came up with the following Find/Replace (Regular Expression)
Find : ^([a-z])
Replace with : \U$1
This works in Regex101 (Python flavor), but not in Editorial (I get a capital U at the beginning of each line starting with a lower case character)
Where did I go wrong ?
Thanks in advance