0
votes
2answers
348 views

ASP.NET Response.Redirect() issue not working at false parameter

Have trouble with the Response.Redirect() and getting the error: Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack I've googled and found some ...
1
vote
0answers
94 views

evaluate a TypeAs expression

I'm trying to evaluate an expression to check if the output of the evaluation is null. My code looks like this: public class ObjectHelper<TType> { public static bool PathHasNull(object ...
10
votes
1answer
1k views

VB.Net- Evaluating Mathematical Expression in a String

Is there a method that allows me to evaluate a mathematical expression in a string? Example (Not actual Code): Input = "2+2" Output = SomeMethod(Input) Output = 4 Update: Nevermind, I found a way ...
4
votes
5answers
700 views

PHP use string as operator

Say I have a string, $char. $char == "*". I also have two variables, $a and $b, which equal "4" and "5" respectively. How do I get the result of $a $char $b, ie 4 * 5 ? Thanks :)
0
votes
0answers
610 views

Using recursion to evaluate subexpressions

I have implemented code which does the following: String infixToPostfix(String expr) - takes an expression WITHOUT parentheses and returns the postfix equivalent float evaluate(String postfix) - ...
0
votes
3answers
213 views

Is there a method that will evaluate a string and produce an integer (assuming the string is an equation) in C#

Okay, I know that in Python, say you had a string called strExpression and it's value was "1+2-(3*5)" There is a python method (function, sorry I get the terms confused) that will evaluate that ...
1
vote
1answer
436 views

ANTLR expressions rewrite intermediate tree

For expressions like 3+4 I would like to use the value 7 in an intermediate representation tree. I cannot work out how to get the returns value into a rewrite rule. expression returns [int v]: etc. ...
4
votes
8answers
6k views

Boolean Expression Evaluation in Java

I'm looking for a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java, and I do not want to use the JEP library. I have a String expression like: (x ...
11
votes
6answers
4k views

What is easiest way to calculate an infix expression using C language?

Suppose the user inputs an infix expression as a string? What could be the easiest ( By easiest I mean the shortest) way to evaluate the result of that expression using C language? Probable ways are ...