notepad++ - Regex to capitalize first letter of every word -


hello have texts looks

  • jameskach --> jameskach
  • firefighter11 --> firefighter11
  • attackontitan --> attackontitan
  • lazyperson --> lazyperson

not texts same, showing examples, appreciated

regex match & group first character :

^(.) 

what replace :

\u\1 

(the \1 means forst matching group.)


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -