-
~> cat q.abnf
quoted-pair = "\\" (%x00-09 / %x0B-0C / %x0E-7F)
~> ./abnf2pegtl q.abnf
struct quoted_pair : pegtl::seq< pegtl::one< '\\' >, pegtl::sor< pegtl::range< 0x00, 0x09 >, pegtl::range< …
-
Hello
Like http://pegjs.org/online
I want to define rule in plain files and parse accordingly.
Is it possible? If not please add this.
-
**Please note we will close your issue without comment if you delete, do not read or do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use …
-
Not sure whether it's a clang's upstream bug or the lib's one, but anyway it doesn't build.
### Sysinfo
System: `ArchLinux CURRENT`
```
$ clang++ -v
clang version 4.0.0 (tags/RELEASE_400/fina…
-
Hi !
First and foremost, it's a real pleasure to use PEGTL, thank you !
When using `string_input` like:
`std::string s{ "something to parse" };`
`tao::pegtl::string_input in(s);`
a compiler…
chybz updated
6 years ago
-
It would be nice if PEGTL supported (configurable) memoization to increase performance in situations where backtracking happened.
-
`PEGTL` uses the MAP_FILE compatibility flag - according to the Linux standard this is [ignored](http://man7.org/linux/man-pages/man2/mmap.2.html). Worth removing?
-
Hey Colin, great library! I'm looking forward to using it. I actually got here through googling `C++ CSV Parser`, which took me [here](https://www.reddit.com/r/cpp/comments/3lrsbt/whats_your_go_to_mod…
-
Many, many thanks to your brilliant code!
Just discovered it and it seems to be a killer solution for my task.
However I need to parse messages and can't afford to wrap decoding in try/catch blocks …
-
Is it possible to parse true (unseekable, possibly infinite) streams with PEGTL?
For example, could the calculator demo be modified to parse stdin as a stream, with 'quit' being a parser action?
In …