rustHow do I get the byte length of a string in Rust?
The byte length of a string in Rust can be obtained using the len()
method. This method returns the number of bytes in the string.
Example code
let s = "Hello world!";
let len = s.len();
println!("The length of '{}' is {} bytes.", s, len);
Output example
The length of 'Hello world!' is 12 bytes.
Code explanation
let s = "Hello world!";
: This line declares a string variables
and assigns it the value"Hello world!"
.let len = s.len();
: This line calls thelen()
method on thes
string variable and assigns the result to thelen
variable.println!("The length of '{}' is {} bytes.", s, len);
: This line prints the length of thes
string variable to the console.
Helpful links
More of Rust
- How to replace a capture group using Rust regex?
- How to get an entry from a HashSet in Rust?
- How to create a HashSet from a Vec in Rust?
- How to match a string with regex in Rust?
- How to use regex to match a double quote in Rust?
- How to use an enum in a Rust HashMap?
- How to compare two Rust HashMaps?
- How to convert a Rust slice to a fixed array?
- How to convert a Rust HashMap to a BTreeMap?
- How to replace strings using Rust regex?
See more codes...