Link to home
Start Free TrialLog in
Avatar of Misha
MishaFlag for Russian Federation

asked on

c# syntax analizer for custom programming language

Hello, experts!

I need some advice on syntax analizer for custom programming language.
I need parse string to get operators with operands in code expression.

For example, I have source string:

 a + b * (1.21 + method(param1, param2))

Open in new window


I need to create some code tree
User generated image
How best to do it ? I need C# code examples , no dlls or other libraryes.
ASKER CERTIFIED SOLUTION
Avatar of gr8gonzo
gr8gonzo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Misha

ASKER

Perfectly!
I can begin my work with this code!
Thank you very much!