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 example:
^([A-Z &#]+:)
to \L$1
However, is there a simple switch-based way to get title case?