Home
Manual
Topics
Types
Symbols
std::to_sentence_case
converts a string to "Sentence case"
Parameter
string
the string to convert
Result
string
the converted string
Example
$str "this is a test." println! str.to_sentence_case
Output
This is a test.
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::string
converts the spefied string to "Sentence case"