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 aString
type 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 theString
type
Helpful links
More of Rust
- How to replace a capture group using Rust regex?
- How to convert the keys of a Rust HashMap to a vector?
- How to replace all matches using Rust regex?
- How to use regex to match a double quote in Rust?
- How to split a string with Rust regex?
- How to get a capture group using Rust regex?
- How to use regex with bytes in Rust?
- How to get an entry from a HashSet in Rust?
- How to convert a Rust HashMap to a BTreeMap?
- How to use regex to match a group in Rust?
See more codes...