I am trying to figure out if there are existing libraries/methods that would allow you to capitalize each word in a string, however the words have no spaces. For example:
"blueparrot"
should be converted to "BlueParrot"
I know that if there were spaces, I can accomplish this with:
var textInfo = new CultureInfo("en-US", false).TextInfo;
textInfo.ToTitleCase("blue parrot");
However, without the spacing, the outcome is
Blueparrot