If you want to capitalize (Use Caps For Every First Letter Of A Word, Just Like This Text), I strongly recommend using vim (or gvim if you happen to use Windows):

Open your text in vi (or vim or gvim):

vi mytest.txt

Now press the following keys exactly as shown:

:%s/\<[a-z]/\u&/g

: -- start the "colon mode" to issue commands
% -- the scope of the next command is the whole document
s///g -- search and replace with . g means "if it occurs many time on one line, do it multiple times"!

Now press

:wq

And you are done.

Tags: , , , , , , ,

Gibt einen Kommentar ab

Folgende HTML-Tags sind erlaubt: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Comment Spam Protection by WP-SpamFree