rustHow do I convert a string to a vector of u8 in Rust?
To convert a string to a vector of u8 in Rust, you can use the as_bytes() method on a String type. This will return a &[u8] type, which can be converted to a Vec<u8> using the to_vec() method.
Example code
let s = String::from("Hello world!");
let v: Vec<u8> = s.as_bytes().to_vec();
Output example
[72, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100, 33]
Code explanation
let s = String::from("Hello world!");: creates aStringtype from the string literal"Hello world!"let v: Vec<u8> = s.as_bytes().to_vec();: creates aVec<u8>type from the&[u8]type returned by theas_bytes()method on theStringtype
Helpful links
More of Rust
- How to replace a capture group using Rust regex?
- How to match whitespace with a regex in Rust?
- How to use regex captures in Rust?
- How to use binary regex in Rust?
- How to use regex to match a double quote in Rust?
- How to perform matrix operations in Rust?
- How to lock a Rust HashMap?
- How to compare two Rust HashMaps?
- How to convert a Rust slice of u8 to a string?
- How to iterate over a Rust HashMap?
See more codes...