I have a bunch of labels in a text file (e.g. MY LABEL:) that I need to make title case.
I already know how I would make them all lower or upper case.
For ex
Find: ([A-Z])([A-Z]+)\b
([A-Z])([A-Z]+)\b
Replace: $1\L$2
$1\L$2
Make sure case sensitivity is on (Alt + C) and preserve case is off (Alt + A).
Have you tried the Sublime Text built in? Edit -> Convert Case -> Title Case.
Edit -> Convert Case -> Title Case.