rust-nom-beginning-of-line/README.md

13 lines
463 B
Markdown
Raw Permalink Normal View History

2024-11-10 21:02:44 +00:00
# Rust beginning of line match with NOM
This is an experiment to demonstrate that it is possible to detect "the beginning of a line" using
Nom in Rust, although it's a bit harder than it looks. Essentially we can only match "content that
includes a beginning-of-line marker," which could be another beginning-of-line marker or any legal
Nom parser.
It's just an experiment, meant to expand my knowledge. Not a big deal.
# LICENSE
[MIT License](./LICENSE.md)