HomeManualTopicsTypesSymbols

std_types::string/std::to_lower_case

returns the string converted to lower case

Parameter

self
the string to convert

Results

None

Example

$str "ABC" $lower_case_str str.to_lower_case println! lower_case_str

Output

abc

Topic

Strings

Implements

std::to_lower_case converts all upper case characters to lower case

See also

std::to_upper_case converts all lower case characters to UPPER CASE
std::to_title_case converts the contents to Title Case
std::map_characters applies a function to each character of the string