Slices
Slices
fn main() { let s = String::from("hello world"); let hello: &str = &s[0..5]; // or &s[..5]; let world = &s[6..11]; // or &s[6..]; println!("{}", hello); println!("{}", world); }
[slices: add text (P1)](https://github.com/john-cd/rust_howto/issues/558)