I need to make a replacement like this from arouzière to AROUZIÈRE.
I use notepad++ 6.6.7 for this in the following manner:
search: (\p{L}*?) replace: \U\1\E
Problem: The result is AROUZIèRE. As you can see the accented letter is not made UPPERCASE. Do you know a workaround or even if this is possible via RegEx with notepad++? Thanks a lot for any help.
Try the pattern
Which find lowercase letters that have an uppercase variant.
Demo
Note that some unicode characters do not have an uppercase variant.