Sumit
0
Q:

how to split a string by spaces rust

let mut iter = "A few words".split_whitespace();

assert_eq!(Some("A"), iter.next());
assert_eq!(Some("few"), iter.next());
assert_eq!(Some("words"), iter.next());

assert_eq!(None, iter.next());
0

Tags

New to Communities?

Join the community