rustHow to lowercase a string in Rust
You can lowercase a string in Rust using the to_lowercase() method.
Example code:
let my_string = "HELLO WORLD";
let lowercase_string = my_string.to_lowercase();
println!("{}", lowercase_string);
Output
hello world
Explanation:
let my_string = "HELLO WORLD";: This line declares a variablemy_stringand assigns it the value of the string"HELLO WORLD".let lowercase_string = my_string.to_lowercase();: This line calls theto_lowercase()method on themy_stringvariable, which returns a new string with all characters in lowercase. This new string is then assigned to thelowercase_stringvariable.println!("{}", lowercase_string);: This line prints the value of thelowercase_stringvariable to the console.
Helpful links:
More of Rust
- How to replace a capture group using Rust regex?
- How to convert a Rust slice of u8 to u32?
- How to replace all matches using Rust regex?
- Regex example to match multiline string in Rust?
- How to use regex lookahead in Rust?
- How to split a string with Rust regex?
- How to match the end of a line in a Rust regex?
- How to use non-capturing groups in Rust regex?
- How to replace all using regex in Rust?
- How to make regex case insensitive in Rust?
See more codes...