The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
19answers
26k views

c# evaluating string “3*(4+2)” yield int 18

Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE: string mystring = "3*(2+4)"; int result = ...
7
votes
7answers
260 views

Why does PHP consider 0 to be equal to a string?

I have the following piece of code: $item['price'] = 0; /*code to get item information goes in here*/ if($item['price']=='e'){ $item['price'] = -1; } It is intended to initialize the item ...
7
votes
4answers
11k views

Turn a string formula into a “real” formula

Hey there, Ive got another question. Lets say i got "0,4*A1" in a cell (As a string) and on another cell I want to convert this "string formula" into a real formula and calculate its value, how can I ...
9
votes
7answers
3k views

c expression Evaluator

Okay lets say I have a string such as this in a text file: ((( var1 AND var2 AND var3) OR var4) AND ((var5 OR var6) AND var7)) after parsing this into the c program and the vars are handled and set ...
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 ...
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 ...
3
votes
3answers
210 views

Can I Evaluate An Excel VB Constant That Is In String Format?

Is it possible to Evaluate a String which contains a valid Excel VB Constant's Name to return that Constant's Value? eg Dim ConstantName as String Dim ConstantValue as Long ...
5
votes
2answers
3k views

Mathematical expression (string) to number in Java

I'm trying to find something like Java Embedding Plugin (JEP) that can evaluate a mathematical formula (string) and give back the answer. But it should also calculate a variable, for example: ...
4
votes
1answer
764 views

bash: How to evaluate PS1, PS2, …? [duplicate]

Possible Duplicate: Echo expanded PS1 Is there any way to 'evaluate' PS1, PS2, etc from within a bash script? Although, I can use alternate means to get all elements of my current PS1, I ...
2
votes
4answers
638 views

Evaluating command with Awk

The problem is that: I have different txt files in which is registered a timestamp and an ip address for every malware packet that arrives to a server. What I want to do is create another txt file ...
1
vote
1answer
627 views

Evaluate javascript to plain text using C#, .NET 3.5

How can I evaluate's document.write javascript to plaintext in C#? I'm trying to evaluate this: <script type="text/javascript"> a=2;b=3; document.write(a+"_"+y); </script> to this: 2_3 ...
3
votes
1answer
569 views

XPath element/object is undefined when using document.evaluate

How can I fix the regular JavaScript code so it doesn't say "undefined" and displays the value of the input field? The jQuery code works fine and displays the input field value correctly on the same ...
1
vote
3answers
1k views

String Expression to be evaluated to number

I need to write a TSQL user defined function which will accept a string and return a number. I will call the function like dbo.EvaluateExpression('10*4.5*0.5') should return the number 22.5 Can any ...
1
vote
3answers
578 views

php - convert single quoted string to double quoted

Been searching here and google for over an hour, can't seem to find the answer to this. I have a string returned from a database query which contains variables, however it appears that these strings ...
0
votes
2answers
2k views

Evaluate mathematical expression within string

I'm developing an Android app that i get an String with the mathematical expression i have to calculate, i did it to convert the letters into the numbers i need, but what is the best way to evaluate ...
0
votes
1answer
96 views

Why doesn't my properly defined variable evaluate for length correctly (and subsequently work in the rest of my code)?

I employed the answer Marc B suggested and still got nothing in the variable when I echo'd it after the while loop, so I added a few checks to show status of things as they were processed through the ...
0
votes
1answer
400 views

JavaScript for replacing text in the body tag of pages loaded into an open source browser for Android

I'm writing a JavaScript for an open source browser available for Android to replace the text in the body tag of the pages loaded into the browser with some different text. This should be worked in ...
0
votes
1answer
659 views

Evaluate a string-expression in XSL

Is there any way to evaluate a string expression in XSL? example: <myItem id="1"> <validator expression="$someVariable = '3'" /> </myItem> ... <xsl:variable ...
0
votes
1answer
714 views

MSBuild: Evaluating reserved properties with ReadLinesFromFile

I'm using MSBuild to customize the build process of Visual Studio, WiX, SandCastle, ... projects. To keep it as generic as possible I'd like to use text files defining some 'project specific' ...
-1
votes
1answer
385 views

Evaluate List of ColdFusion Variables

i created a table using coldfusion lists system, rows are months and the columns are cities, and the variable is the sales, now i need to add to every evaluated sale variable, the list of companies ...