Reputation: 43
I want to turn every letter after :
to uppercase on every single line.
For example from:
nerd:class:ace
make:milk
lake:cake
to
nerd:Class:Ace
make:Milk
lake:Cake
Upvotes: 0
Views: 47
Reputation: 57155
Replace
menu with Ctrl+h.Regular expression
checkbox is ticked.:([a-z])
in the Find what :
field (Alt+f). This matches and captures any letter following a :
.:\U$1
in the Replace with :
field (Alt+l). \U
uppercases the captured letter in the matched group $1
.Replace All
.Upvotes: 3