Hi all,
Can anyone suggest a way to selectively replace uppercase letters with lowercase using regexp?
My goal is to perform the following substitution:
name_Function -> name_function
My attempt so far was:
Search: _[A-Z] Replace : _\1
Either the search or the replace miss the conversion.
Thanks in advance
Stefan