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)); aoc_parse(text, p) }

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 the pieces that you can use in a pattern:

Repeating patterns:

Custom conversion:

Patterns with two or more alternatives:

License: MIT