Guest User

Untitled

a guest
Jul 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. fn main() {
  2. let numbers = "12.03 0.3 44.2 45 zzz"
  3. .split_whitespace()
  4. .map(|n| n.parse::<f32>())
  5. .filter_map(|n| n.ok());
  6.  
  7. for n in numbers{
  8. println!("{:?}", n);
  9. }
  10. }
Add Comment
Please, Sign In to add comment