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

math / function / boolean /string expression evaluator

Rate me:
Please Sign up or sign in to vote.
4.90/5 (69 votes)
19 Mar 20065 min read 218.5K   3.3K   102   93
C# .NET assembly that executes numeric, date, string, boolean, comparison, etc. expressions.

Introduction

I've come across several expression evaluators on this site. They utilize several clever ideas to implement them, but each of them had their "gotchas". I needed one that was flexible (handled more than one data type), that didn't compile code (too slow and wasted resources), that worked (one couldn't handle any unary operator), and could be easily adapted for other needs.

Thus, I've developed a set of simple classes called ExpressionEval and FunctionEval. These evaluators handle numeric, string, boolean, and datetime datatypes, and they support all the unary and binary operators available in C#. They also support functions (through the utilization of FunctionEval class) and have the ability to add custom functions by attaching an event handler that fires when a function name is not found.

About the project files

Included in the project zip(s) are the .cs files that implement regular expressions, expression evaluation, and function evaluation. Also included is a console based tester application that will allow you to enter and manually test particular expressions.

Simply select the version of the project (VS 2005 or 2003) from the versions above.

API

The API is really simple. You have two main classes: ExpressionEval, and FunctionEval. Both utilize each other to evaluate functions in an expression, or expressions in function parameters.

ExpressionEval has a default constructor and a special constructor to initialize the Expression property. Everything pretty much centers around the Expression property, the SetVariable and ClearVariable methods, the AdditionalFunctionEventHandler event, and the Evaluate() method. There are also some special evaluate methods (i.e. EvaluateBool()) that return a specific data type.

The first time Evaluate() is called, the object creates a graph of the expression to improve performance during subsequent calls of the Evaluate() method. However, if the Expression property changes, it will release the graph and form a new one the next time Evaluate() is called. Therefore, if you are using a consistent expression with changing values, use the SetVariable method so that it will not destroy the graph for the expression.

FunctionEval has a default constructor and a special constructor to initialize the Expression property. Calling Evaluate() will cause the object to find the first function in the Expression property and return its evaluation. Calling the static (or Shared in VB) Replace(string strInput) will cause the object to find all the functions in the input string, and replace them with their evaluations in the output (returned) string. (Note: I added a non-static parameter-less Replace() method that does the same thing, but it uses the Expression property as the source string.)

Both the ExpressionEval class and the FunctionEval class have a public event for handing custom functions. This event fires if a function name in the expression string has no built-in function associated. The event is named AdditionalFunctionEventHandler.

Expression strings

Expression strings are easy to construct. Standard operator precedence applies. (See C# documentation) Parenthesis work. The !, -, and ~ unary operators are functional. To call a function in the expression string use the following syntax: $functioname(param1, param2, ...).

To get a list of the built-in functions, look at the ExecuteFunction method in FunctionEval.cs.

Here are some examples of expression strings:

(1 + 1) * 17 / 3

$now() >= $today()

$pi() == $e()

"Today is " + $fmtdate($today(), "dddd, MMMM d, yyyy")

@(Variable1) == @(Variable2)

!true == false

  • Valid unary operators: -, !, ~.
  • Valid binary operators: *, /, %, +, -, <, <=, >, >=, == (also =), !=, &, ^, !, &&, ||.
  • Parenthesis are evaluated first.
  • E-notation (7.511E-10) is allowed for numbers and...
  • Hexadecimal as well (0xaaf1).
  • Expressions in the form @dt(mm/dd/yyyy hh:mm:ss (AM/PM)) will return a datetime datatype.
  • Expressions in the form @ts([d.]h:m[:s[.ms]]) will return a timespan datatype. tokens in [] are optional.
  • Expressions in the form @(VariableName) will attempt to look up a variable set by SetVariable.

Sample code

In the unit test project, you will see a lot of sample expressions. Here are some example codes for usage:

Construction and evaluation

C#
ExpressionEval expr = new ExpressionEval("1+1");
object val = expr.Evaluate();

Creating a custom function handler

C#
static void eval_AdditionalFunctionEventHandler(
      object sender, AdditionalFunctionEventArgs e)
{
    object[] parameters = e.GetParameters();
    switch (e.Name)
    {
        case "brent":   
            e.ReturnValue = "This Library Rocks!";
            break;

        case "liljohn": 
            e.ReturnValue = "WWWWWWWWHHHHHAT? YEAYAH! OKAY!";
            break;

        case "strcat":
            string ret = "";
            foreach (object parameter in parameters)
                ret += parameter.ToString();
            e.ReturnValue = ret;
            break;

        case "setvar":
            (sender as FunctionEval).SetVariable(
                "" + parameters[0],
                parameters[1]
            );
            break;
    }
}

Using the tester application

Make sure the tester application is set as the startup project. Hit F5 to build and run. You will see a blank console screen. Type in an expression and hit Enter. Its evaluation will appear below it, otherwise an error will be displayed. Type "clr" to clear the console, and type "exit" to quit the application.

Known issues

There is one issue that I am aware of. If you place two binary operators in a row, no error is returned. Instead, the first in the list is used, and the rest until the right operand (w/ or w/o unary operator) are ignored.

Example: (1 * + -1). This will ignore '+' and execute (1 * -1).

Note: I've improved the error handling to catch unused tokens and missing binary operators.

Updates

  • 3/16/2006
    • Added timespan functionality and recognition: @ts([d].h:m[:s[.mmm]]). [] indicates optional components.
    • Added more robust error handling to catch unused tokens and missing binary operators.
  • 12/30/2005
    • Completely updated the code libraries (and verified that it works with the release of VS2005 Pro) and description with bug fixes and modifications that I've been sending to those who had requested for it. Also updated the custom function handling event to .NET event standards. (with sender and eventarg params)
  • 01/05/2005
    • Changed functionality so that upon first execution of an expression (with a created object, not the static (Shared) method), it parses it and creates a graph. As long as the Expression property is not changed, it will keep the graph and, subsequent calls to Evaluate() will not parse the expression, but re-execute the graph.
    • Also added a .NET 2003 ready .zip file.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions

 
QuestionLicensing (again) Pin
TIMOTHEVS23-Jun-16 0:58
TIMOTHEVS23-Jun-16 0:58 
AnswerRe: Licensing (again) Pin
railerb22-Aug-16 3:32
railerb22-Aug-16 3:32 
QuestionLicense Pin
Member 118079852-Jul-15 3:01
Member 118079852-Jul-15 3:01 
QuestionSmart work Pin
Sachin29.g19-Dec-14 14:19
Sachin29.g19-Dec-14 14:19 
QuestionLicense of the utility Pin
hatake_kakashi2-Jul-14 1:00
hatake_kakashi2-Jul-14 1:00 
QuestionString Expression Evaluation Pin
specialdreamsin13-Jun-12 23:06
specialdreamsin13-Jun-12 23:06 
GeneralRe: String Expression Evaluation Pin
railerb17-Jul-12 21:52
railerb17-Jul-12 21:52 
Answerit's wrong some case Pin
thaihuydang27-May-12 22:11
thaihuydang27-May-12 22:11 
GeneralRe: it's wrong some case Pin
railerb17-Jul-12 21:50
railerb17-Jul-12 21:50 
GeneralMy vote of 5 Pin
trx128-Sep-11 3:29
trx128-Sep-11 3:29 
Generaldecimal Pin
mryapados20-May-10 6:27
mryapados20-May-10 6:27 
GeneralRe: decimal Pin
ToniB1311-May-11 2:44
ToniB1311-May-11 2:44 
GeneralRe: decimal Pin
Member 832618217-Oct-11 7:23
Member 832618217-Oct-11 7:23 
QuestionUsage of Code [modified] Pin
Member 41913665-Oct-09 2:27
Member 41913665-Oct-09 2:27 
QuestionHi...i have a problem... [modified] Pin
Jave.Lin24-Sep-09 17:16
Jave.Lin24-Sep-09 17:16 
GeneralTimeSpan in condition..not working. Pin
rajml4-Sep-09 6:07
rajml4-Sep-09 6:07 
GeneralGreat utility Pin
jakka3012-Jun-09 9:53
jakka3012-Jun-09 9:53 
GeneralCopyright... Pin
railerb26-Aug-08 12:40
railerb26-Aug-08 12:40 
QuestionAssignment statement Pin
kan_anup_george7919-Aug-08 7:44
kan_anup_george7919-Aug-08 7:44 
AnswerRe: Assignment statement Pin
railerb26-Aug-08 12:39
railerb26-Aug-08 12:39 
QuestionCopyright (again) Pin
keesvz20-May-08 8:27
keesvz20-May-08 8:27 
GeneralCommercial Pin
Andreas Freeman15-Apr-08 8:20
Andreas Freeman15-Apr-08 8:20 
GeneralBoolean Evaluation Doesn't Like ! Pin
jasona2230-Oct-07 9:46
jasona2230-Oct-07 9:46 
GeneralRe: Boolean Evaluation Doesn't Like ! Pin
railerb30-Oct-07 9:50
railerb30-Oct-07 9:50 
QuestionGreat code Pin
nishant.gogia25-Oct-07 6:24
nishant.gogia25-Oct-07 6:24 

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.