An input parser for positive and negative keywords input (e.g: +foo,-bar,+baz)
![]()
![]()
```yml
kwp = "0.1.0" ```
```rust // cargo run -- +my,-keywords,+here
use kwp::{Parser, Prefixes}; use std::env;
fn main() { let input = env::argsos() .nth(1) .expect("No input provided.") .intostring() .unwrap();
let parser = Parser::new(
&input,
Prefixes::default()
);
let (pos, neg, other) = parser.parse();
println!(
"Input: {}\nPositive: {:#?}\nNegative: {:#?}\nOther: {:#?}",
input, pos, neg, other
);
} ```