HomeManualTopicsTypesSymbols

std::to_title_case

converts the contents to Title Case

Parameter

string
the string to be converted

Result

title
the title case version of string

Description

All characters but the first character of each word are converted to lower case. The first characters of all words are converted to upper case.

Topic

Strings

See also

std::to_lower_case converts all upper case characters to lower case
std::to_upper_case converts all lower case characters to UPPER CASE

Implemented by

std_types::character converts to title case
std_types::string returns the string converted to "Title Case"