mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-25 05:42:18 +08:00
37 lines
1.0 KiB
Rust
37 lines
1.0 KiB
Rust
|
// ANCHOR: here
|
||
|
fn first_word(s: &str) -> &str {
|
||
|
// ANCHOR_END: here
|
||
|
let bytes = s.as_bytes();
|
||
|
|
||
|
for (i, &item) in bytes.iter().enumerate() {
|
||
|
if item == b' ' {
|
||
|
return &s[0..i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&s[..]
|
||
|
}
|
||
|
|
||
|
// ANCHOR: usage
|
||
|
fn main() {
|
||
|
let my_string = String::from("hello world");
|
||
|
|
||
|
// `first_word` works on slices of `String`s, whether partial or whole
|
||
|
let word = first_word(&my_string[0..6]);
|
||
|
let word = first_word(&my_string[..]);
|
||
|
// `first_word` also works on references to `String`s, which are equivalent
|
||
|
// to whole slices of `String`s
|
||
|
let word = first_word(&my_string);
|
||
|
|
||
|
let my_string_literal = "hello world";
|
||
|
|
||
|
// `first_word` works on slices of string literals, whether partial or whole
|
||
|
let word = first_word(&my_string_literal[0..6]);
|
||
|
let word = first_word(&my_string_literal[..]);
|
||
|
|
||
|
// Because string literals *are* string slices already,
|
||
|
// this works too, without the slice syntax!
|
||
|
let word = first_word(my_string_literal);
|
||
|
}
|
||
|
// ANCHOR_END: usage
|