Logo

Programming-Idioms

History of Idiom 49 > diff from v32 to v33

Edit summary for version 33 by freecoder:
[Rust] Fix indents

Version 32

2018-12-01, 16:58:26

Version 33

2018-12-17, 19:54:28

Idiom #49 Split a space-separated string

Build list chunks consisting in substrings of input string s, separated by one or more space characters.

Illustration

Idiom #49 Split a space-separated string

Build list chunks consisting in substrings of input string s, separated by one or more space characters.

Illustration
Code
let chunks:Vec<_>=s.split_whitespace().collect();
Code
let chunks:Vec<_> = s.split_whitespace().collect();