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 variablesand assigns it the value"Hello world!".let len = s.len();: This line calls thelen()method on thesstring variable and assigns the result to thelenvariable.println!("The length of '{}' is {} bytes.", s, len);: This line prints the length of thesstring variable to the console.
Helpful links
More of Rust
- How to use binary regex in Rust?
- How to map a Rust slice?
- How to compare two Rust HashMaps?
- How to yield a thread in Rust?
- How to make regex case insensitive in Rust?
- How to use regex to match a group in Rust?
- How to match whitespace with a regex in Rust?
- How to use regex lookbehind in Rust?
- How to match digits with regex in Rust?
- How to use regex to match a double quote in Rust?
See more codes...