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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -