Hi community,
If you are looking for a easy to use parser generator to generate fast, UTF-8, thread-safe parsers you can checkout Algodal Parser Generator at https://algodal.itch.io/algodal-parser-generator-tool
We have syntax highlighting for vscode.
The parser language (the language you write the parsers in) is extremely simple and concise (unlike most other parser generators).
You can write parsers for COMPLEX languages very quickly and easily. Parsers are generated in C code but you can generate a parser in JSON and then convert it later to C code.
The generated parsers come with simple C API that makes them easy to implement in your projects as well as extending their functionality. It is fully documented and the manual is easy to use. You can download the manual for fee at https://algodal.itch.io/algodal-parser-generator-tool
Here is a quick introduction
Here is an example of writing a fully compliant JSON parser
Sincerely,
Algodal Team.