How to capitalize the last Latin letter in a word in Notepad++

- Open the Find and Replace window
- In the Find field, enter the regular expression:
[a-zA-Z]\b
\U$0
Example of use
Let's consider an example of the text before and after transformation:
Before: hello world this is an example After: hellO worlD thiS iS aN examplE
Now all the last Latin letters in each word are capitalized.
In the article, we reviewed how to capitalize the last Latin letter in a word using Notepad++.