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
- Generator example in Rust
- How to replace a capture group using Rust regex?
- How to match a URL with a regex in Rust?
- How to use binary regex in Rust?
- How to use regex lookahead in Rust?
- How to make regex case insensitive in Rust?
- Regex example to match multiline string in Rust?
- How to use regex to match a double quote in Rust?
- Yield example in Rust
- How to use a tuple as a key in a Rust HashMap?
See more codes...