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 use non-capturing groups in Rust regex?
- Regex example to match multiline string in Rust?
- How to match the end of a line in a Rust regex?
- How to use regex captures in Rust?
- How to replace strings using Rust regex?
- How to use regex lookbehind in Rust?
- How to add an entry to a Rust HashMap?
- How to use backslash in regex in Rust?
- How to print a Rust HashMap?
See more codes...