notepad++ - Regex to capitalize first letter of every word -
hello have texts looks
jameskach-->jameskachfirefighter11-->firefighter11attackontitan-->attackontitanlazyperson-->lazyperson
not texts same, showing examples, appreciated
regex match & group first character :
^(.) what replace :
\u\1 (the \1 means forst matching group.)
Comments
Post a Comment