rustHow to get the length of a string in Rust?
The length of a string in Rust can be obtained using the len()
method. This method returns the length of the string as a usize
type.
Example code
let my_string = "Hello World!";
let length = my_string.len();
println!("The length of '{}' is {}.", my_string, length);
Output example
The length of 'Hello World!' is 12.
Code explanation
let my_string = "Hello World!";
: This line declares a string variablemy_string
and assigns it the value"Hello World!"
.let length = my_string.len();
: This line calls thelen()
method on themy_string
variable and assigns the returned value to thelength
variable.println!("The length of '{}' is {}.", my_string, length);
: This line prints the length of the string to the console.
Helpful links
More of Rust
- How to use regex to match a double quote in Rust?
- How to replace a capture group using Rust regex?
- How to use regex captures in Rust?
- How to clear a Rust HashMap?
- How to convert the keys of a Rust HashMap to a vector?
- How to perform matrix operations in Rust?
- How to implement PartialEq for a Rust HashMap?
- How to use a custom hash function with a Rust HashMap?
- How to use named capture groups in Rust regex?
- How to iterate over a Rust HashMap?
See more codes...