Click here to Skip to main content
15,885,782 members
Articles / Programming Languages / C#

Parsing - It Is Easy. Base CSharp Classes and Expressions Calculator

Rate me:
Please Sign up or sign in to vote.
3.67/5 (4 votes)
13 Mar 2008CPOL1 min read 20.9K   318   18   1
Provide Base C# parsing classes with demo application and description

Introduction

Sometimes you need to analyze a file and look for a simple parsing solution. For this case, I developed some base classes and wrote a description of how you can make it. As an example, I used expression calculator. It is easy but very powerful sample, I think. For developing your own parser, you only need to write rules for your file and write simple classes based on rules. As input you can use any source but default implementation uses text file. You can get different parts (as variable names, numbers, and e.g.) of your file as output.

The sample application can read expressions from a file or from the text box. Expressions are not only parsed but executed too. So you can use it as the powerful calculator.

In addition, I tried to explain how to create your own parser based on my classes.

You can find more detailed description here.

Feel free to write me a notice if you have a question.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
I started my way with Fortran and going via Pascal, Delphi, C and C++. I'm falling in love with C# now.

Comments and Discussions

 
GeneralMy vote of 5 Pin
che@free.fr25-Mar-11 23:05
che@free.fr25-Mar-11 23:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.