Click here to Skip to main content
15,902,189 members
Articles / Programming Languages / C#

Introduction to Text Parsing in C# using Parakeet

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
19 Mar 2024MIT4 min read 7.7K   11  
An introduction to building recursive descent parsers in C# using the Parakeet parsing library
This article describes how to use the Parakeet parsing library in C#. Using a recursive-descent parsing library can make parsing complex patterns in text much easier than writing code from hand, or having to learn special languages invented by parsing tools. Parakeet allows grammars to be defined directly in C# using operator overloading to map rule combinators to PEG operations.

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer Ara 3D
Canada Canada
I am the designer of the Plato programming language and I am the founder of Ara 3D. I can be reached via email at cdiggins@gmail.com

Comments and Discussions