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?
- Regex example to match multiline string in Rust?
- How to calculate the inverse of a matrix in Rust?
- How to parse JSON string in Rust?
- How to use an enum in a Rust HashMap?
- How to get pointer of struct in Rust
- How to match a URL with a regex in Rust?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- How to perform matrix operations in Rust?
See more codes...