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 parse a file with Rust regex?
- How to use Unicode in a regex in Rust?
- YAML serde example in Rust
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to split a string with Rust regex?
- How to replace all matches using Rust regex?
- How to use non-capturing groups in Rust regex?
- How to use negation in Rust regex?
See more codes...