Utility library for parsing data from input strings, or stdin if not with the no_std feature. Supports no_std contexts, but requires the alloc crate.
no_std
rust let (left, right) = strp::scan!("add {}, {}"); println!("sum: {}", left + right);