aoc-parse

A parser library designed for Advent of Code.

This library mainly provides a macro, parser!, that lets you write a custom parser for your [AoC] puzzle input in seconds.

For example, my puzzle input for December 2, 2015 looked like this:

4x23x21 22x29x19 11x4x11 8x10x5 24x18x16 ...

The parser for this format is a one-liner: parser!(lines(u64 "x" u64 "x" u64)).

How to use aoc-parse

It's pretty easy.

```rust use aoc_parse::{parser, prelude::*};

let p = parser!(lines(u64 "x" u64 "x" u64)); assert_eq!( p.parse("4x23x21\n22x29x19\n").unwrap(), vec![(4, 23, 21), (22, 29, 19)] ); ```

If you're using [aoc-runner], it might look like this:

```rust use aocrunnerderive::; use aoc_parse::{parser, prelude::};

[aoc_generator(day2)]

fn parse_input(text: &str) -> Vec<(u64, u64, u64)> { let p = parser!(lines(u64 "x" u64 "x" u64)); p.parse(text).unwrap() } ```

Patterns

The argument you need to pass to the parser! macro is a pattern; all aoc-parse does is match strings against your chosen pattern and convert them into Rust values.

Here are some examples of patterns:

```rust lines(i32) // matches a list of integers, one per line // converts them to a Vec

line(lower+) // matches a single line of one or more lowercase letters // converts them to a Vec

lines({ // matches lines made up of the characters < = > "<" => -1, // converts them to a Vec> filled with -1, 0, and 1 "=" => 0, ">" => 1 }+) ```

Here are the pieces that you can use in a pattern:

Repeating patterns:

Custom conversion:

Alternatives:

Lines and sections:

License: MIT