parseit

Crates.ioparseit
lib.rsparseit
version0.1.2
sourcesrc
created_at2022-04-09 21:22:42.656969
updated_at2023-01-15 14:19:08.991058
descriptionSimple text file parsing library powered by regex and glob patterns
homepagehttps://github.com/orhun/parseit
repositoryhttps://github.com/orhun/parseit
max_upload_size
id564864
size35,734
Orhun Parmaksız (orhun)

documentation

README

parseit

GitHub Workflow Status Crates.io docs.rs Codecov

Simple text file parsing library powered by regex and glob patterns.

// Create a parser to parse sections in Cargo.toml (and optionally Cargo.lock)
let parser = Parser::new(&["Cargo.*"], &["Cargo.toml"], r#"^\[(.*)\]$\n"#).unwrap();

// Parse the files in the manifest directory.
let documents = parser
    .parse(&PathBuf::from(env!("CARGO_MANIFEST_DIR")))
    .unwrap();

// Print results.
for document in documents {
    println!("Path: {}", document.path.to_string_lossy());
    for paragraph in document.paragraphs {
        println!("Title: {}", paragraph.title);
        println!("Contents: {}", paragraph.contents);
        println!();
    }
}

Examples

See examples.

Cargo Features

  • gzip: support reading gzip (.gz) files

License

Licensed under either of Apache License Version 2.0 or The MIT License at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache 2.0 License, shall be dual licensed as above, without any additional terms or conditions.

Copyright

Copyright © 2022-2023, Orhun Parmaksız

Commit count: 30

cargo fmt