kw-parser

An input parser for positive and negative keywords input (e.g: +foo,-bar,+baz)
Actions Crate Downloads

installation

```yml

within Cargo.toml

kwp = "0.1.0" ```

example

```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
);

} ```