kebabCaseToTitleCamelCase

Convert a String for a name that is using kebab-case into TitleCamelCase.

For example, "example-text" to "ExampleText"

This is often but NOT ALWAYS the inverse of titleCamelCaseToKebabCase, if there were acronyms in the original text. For example, "ABCExample" will get converted to "abc-example", which, when inversed, will become "AbcExample".