Lets say I have hundreds and thousands of lines of text like this:
yes:nice
up:true
six:hello
nine:mouse
twenty:cat
I want it to be able to do this:
yes:Nice1
up:True1
six:Hello1
nine:Mouse1
twenty:Cat1
So each line has 1 side with text/numbers, and a colon (:
) separating another side with more text/numbers.
Is there a way to mass modify the each lines to make the starting character after the colon (:
) UPPERCASE?
Also I want to know how to add any number(s) on the end of every single line.
Basically I want to know how to change the capitalisation of a character after the colon and how to add any numbers I want to the end.