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

If you are NOT using [aoc-runner], you can use aoc-parse like this:

```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 ARE using aoc-runner, do this instead:

```rust use aocrunnerderive::*;

[aoc_generator(day2)]

fn parseinput(text: &str) -> anyhow::Resultparse::{parser, prelude::*}; let p = parser!(lines(u64 "x" u64 "x" u64)); p.parse(text) }

asserteq!( parseinput("4x23x21\n22x29x19").unwrap(), vec![(4, 23, 21), (22, 29, 19)] ); ```

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