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

C# Eval Function

Rate me:
Please Sign up or sign in to vote.
3.58/5 (20 votes)
21 Jun 2007CPOL 263.2K   3.4K   49   50
C# eval function

Introduction

This article is about a C# eval function, how to parse an expression and evaluate it. It supports Boolean, Bitwise, Arithmetic, Unary, Paren, Member (such as object.property), Indexer (such as array[index]) and ConditionalIf(?:), it also supports Variable assign.

You can use it to evaluate one statement in the C# source code.

It does not use runtime compiler.

It does not use JScript.NET.

It does not use DataTable.

Using the Code

Expression Example

Basic

2+3*5
 true||false
 a+b*c
 a.b+c.d
 a.f(1,2)[b]
 "123"[0]
 "123".Length
 (1).ToString()

All functions or properties use Reflection to eval. It has no global function and its syntax is checked at runtime.
If you let Parameter 'string'=typeof(string), then it can do like this:

C#
string.Format("{0}1111",233)

If a parameter is a type, it will call its static function or property.

Advanced

(a>b)?c:d 

Reflection

C#
("To"+"String")()

Sample Use

C#
using System;
using Jyc.Expr;
namespace TestExpr
{
    class Program
    {
        static void Main(string[] args)
        {
            Parser ep = new Parser();
            Evaluater evaluater = new Evaluater();
            ParameterVariableHolder pvh = new ParameterVariableHolder();

            pvh.Parameters["char"] = new Parameter(typeof(char));
            pvh.Parameters["sbyte"] = new Parameter(typeof(sbyte));
            pvh.Parameters["byte"] = new Parameter(typeof(byte));
            pvh.Parameters["short"] = new Parameter(typeof(short));
            pvh.Parameters["ushort"] = new Parameter(typeof(ushort));
            pvh.Parameters["int"] = new Parameter(typeof(int));
            pvh.Parameters["uint"] = new Parameter(typeof(uint));
            pvh.Parameters["long"] = new Parameter(typeof(string));
            pvh.Parameters["ulong"] = new Parameter(typeof(ulong));
            pvh.Parameters["float"] = new Parameter(typeof(float));
            pvh.Parameters["double"] = new Parameter(typeof(double));
            pvh.Parameters["decimal"] = new Parameter(typeof(decimal));
            pvh.Parameters["DateTime"] = new Parameter(typeof(DateTime));
            pvh.Parameters["string"] = new Parameter(typeof(string));

            pvh.Parameters["Guid"] = new Parameter(typeof(Guid));

            pvh.Parameters["Convert"] = new Parameter(typeof(Convert));
            pvh.Parameters["Math"] = new Parameter(typeof(Math));
            pvh.Parameters["Array "] = new Parameter(typeof(Array));
            pvh.Parameters["Random"] = new Parameter(typeof(Random));
            pvh.Parameters["TimeZone"] = new Parameter(typeof(TimeZone));
            pvh.Parameters["AppDomain "] = new Parameter(typeof(AppDomain));

            pvh.Parameters["Console"] = new Parameter(typeof(Console));

            pvh.Parameters["evaluater"] = new Parameter(evaluater);

            evaluater.VariableHolder = pvh;

            while (true)
            {
                System.Console.WriteLine("Input line,press Return to Eval:");
                string line = System.Console.ReadLine().Trim();
                if (string.IsNullOrEmpty(line))
                    break;
                try
                {
                    Tree tree = ep.Parse(line);

                    tree.Print(System.Console.Out);

                    object result = evaluater.Eval(tree);

                    if( result != null )
                        System.Console.WriteLine("Result:{0}", result);
                    else
                        System.Console.WriteLine("Result is null");
                }
                catch (Exception e)
                {
                    System.Console.WriteLine("Exception:" + e.GetType().Name _
                                               +"->"+ e.Message);
                }
            }
        }
    }
}

License

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


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionBug in Scanner.cs, at line 453 Pin
Member 864646714-Feb-12 7:42
Member 864646714-Feb-12 7:42 
QuestionThanks Pin
bildik9-Aug-11 10:58
bildik9-Aug-11 10:58 
GeneralMy vote of 5 Pin
Chen Noam4-Oct-10 21:17
Chen Noam4-Oct-10 21:17 
GeneralGracias! Pin
Member 44952424-Jun-10 6:00
Member 44952424-Jun-10 6:00 
Generalthanks! Pin
bpbrainiak4-May-10 4:00
bpbrainiak4-May-10 4:00 
Hi there, great work, I'm using your code and trying to make it better, it's very usefull thanks a lot
GeneralRounding problem Pin
Pauline Cole30-Nov-09 11:20
Pauline Cole30-Nov-09 11:20 
GeneralCalculation bug with negative numbers Pin
Pauline Cole11-Oct-09 23:51
Pauline Cole11-Oct-09 23:51 
GeneralRe: Calculation bug with negative numbers Pin
bpbrainiak4-May-10 3:56
bpbrainiak4-May-10 3:56 
GeneralNice Pin
KeitaroSan8-Oct-09 7:17
KeitaroSan8-Oct-09 7:17 
GeneralDon't use it for work, only for learning stuff Pin
Dannie Juge30-Sep-09 3:25
Dannie Juge30-Sep-09 3:25 
QuestionParse as decimal values Pin
palswim15-Jun-09 11:35
palswim15-Jun-09 11:35 
AnswerRe: Parse as decimal values Pin
palswim15-Jun-09 11:37
palswim15-Jun-09 11:37 
GeneralLicense Pin
Member 256327611-May-09 3:54
Member 256327611-May-09 3:54 
GeneralRe: License Pin
devilplusplus30-May-09 15:30
devilplusplus30-May-09 15:30 
GeneralOne slight correction in the test code Pin
Andrew Kaiser26-Nov-08 2:26
Andrew Kaiser26-Nov-08 2:26 
GeneralCalculation Error Pin
pauf15-Nov-08 0:42
pauf15-Nov-08 0:42 
QuestionAssign Variables Pin
j_jpg12-Nov-08 0:54
j_jpg12-Nov-08 0:54 
GeneralGreat work Pin
Chen Noam5-Nov-08 22:44
Chen Noam5-Nov-08 22:44 
Generalcan't parse Pin
jameswei1-Oct-08 16:43
jameswei1-Oct-08 16:43 
AnswerRe: can't parse Pin
Chen Noam5-Nov-08 22:47
Chen Noam5-Nov-08 22:47 
Questionis it possible to add variable in runtime ? Pin
naamakat25-May-08 2:15
naamakat25-May-08 2:15 
AnswerRe: is it possible to add variable in runtime ? Pin
Member 110949439-Oct-14 3:06
Member 110949439-Oct-14 3:06 
GeneralGetting data from a deep object Pin
ftuttle13-May-08 7:05
ftuttle13-May-08 7:05 
QuestionLicense Pin
Kjell Ahlstrom2-Mar-08 22:10
Kjell Ahlstrom2-Mar-08 22:10 
GeneralRe: License Pin
devilplusplus8-Apr-08 14:09
devilplusplus8-Apr-08 14:09 

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.