Logo

Programming-Idioms

History of Idiom 49 > diff from v4 to v5

Edit summary for version 5 by :

Version 4

2015-08-19, 15:10:28

Version 5

2015-08-19, 15:13:20

Idiom #49 Split a space-separated string

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

Idiom #49 Split a space-separated string

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

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