eval() is a function available in a number of programming languages (including PHP, Python Javascript, among others), which allows the programmer to execute arbitrary code written in the same language, from a string variable within the main program.

learn more… | top users | synonyms

1
vote
2answers
30 views

Ruby: eval with string interpolation

I don't understand, why eval works like this: "123 #{456.to_s} 789" # => "123 456 789" eval('123 #{456.to_s} 789') # => 123 How can I interpolate into a string inside eval? Update: Thank ...
0
votes
1answer
45 views

Perl regular expression — dynamic replacement using eval, literal $1 being used in replacement [duplicate]

I am using eval to handle a dynamic replacement regular expression. The value capture on the left side ($1) is not being used on the right side of the regexp. Any help would be appreciated. ...
2
votes
2answers
38 views

LESS / javascript: convert regexp object to integer (calculation)

I want to convert the background position for vendor prefixed gradients, therefore I use a simple formula 90 - (@degree) according to this example it should be 90 - (135) = -45. The important part is ...
1
vote
1answer
30 views

eval to import a module

It seems that I can't import a module using the eval() function. So, I have a function where if I do import vfs_tests as v it works. However, the same import using eval() like eval('import vfs_tests ...
2
votes
1answer
49 views

ruby - can't concatenate array elements into a string?

For personal homework I am trying out a digital clock program to display 'big' numbers. A ruby program that has parts of the clock that come from strings stored in an array and then a routine (not ...
2
votes
4answers
47 views

How to remove $this from eval scope?

I am writing simple template engine and stack with problem: $this falls into eval scope even after unseting. class foo { public function method() { $code = ...
0
votes
0answers
37 views

condition using eval output “-” if eval value has 0.00 asp.net

i want to display - in a column in datalist if the eval value is 0.00 <td style="width:80px; text-align:center"><asp:Label Text='<%# Eval("Withdraw", "{0:n}").ToString() == "0.00" ? "-": ...
0
votes
0answers
20 views

python embedded command prompt eval in root scope

I'm creating a python application using the PySide Qt implementation and as part of the ui i want a built in command prompt so i can issue python commands that are not implemented in the interface. My ...
3
votes
0answers
74 views

How can you force Twitter's Scala Eval to prevent injecting code? I would like to limit Eval to specifying config parameters

I love the idea of "code as data" for configuration, because the validation you get from case classes is the same validation that you want for a configuration file. Twitter wrote a nice Eval utility ...
0
votes
1answer
34 views

How to use eval to force variable update

I was reading the bash advanced scripting guide (if memory serves me right), and it said something to the extent that eval can be used to force variable updates. So I tried this: ...
1
vote
1answer
30 views

jquery dynamic .append | .prepend | .html

I have some html I would like to either .prepend, .append, or .html it into a container div. Currenty I have $.globalEval('$("#target").'+ method + '(html)' which is eval'd to the likes of ...
0
votes
6answers
44 views

Is it safe to use “eval”?

I have an input-based string looking like this: "34*(12+45.67)>=44-53" and i need to know if its true or false. So, if the string contains only digits and */+-().<>= is it safe to use eval? Or ...
0
votes
1answer
35 views

dynamic email subject and body from database

In my admin site, I want editable Dynamic subject in database text. mailer = MailTemplate.find_by_template_name('friend_request') # mailer.subject = "#{@user.username} wants to be friend on ...
0
votes
3answers
54 views

Is there any other way to call a javascript function stored in mongodb from node js

Is there any other way to call a JavaScript function stored in MongoDB from node.js other than db.eval()? Tried db.eval() since its degrading my server performance, I'm have to use some other methods ...
2
votes
2answers
37 views

Evaluating dynamically generated statements in Python

I need to dynamically generate python code and execute it with eval() function. What I would like to do is to generate some "imports" and "assign values". I mean, I need to generate this string to ...
1
vote
3answers
41 views

vbscript Eval a string to a Variable in a loop?

I am trying to use vbscript's Eval (or maybe I need Execute) to create some variables from the key names from an ini file. The ini file can have unlimited unknown key=val pairs. I need to create a ...
0
votes
1answer
29 views

MongoDB eval() with arguments

I'm getting a strange result when trying to use eval with the args argument. The following works fine: > db.eval(function(coll) { var res = db[coll].find({}); return(res.count()); }, ...
0
votes
2answers
36 views

Remove DataBinder.Eval field if it is null or blank

Actually I am binding some data on tooltip of a Image control in gridview. all is working fine. see my code below <asp:Image ID="Image1" runat="server" ImageUrl="~/img/images.jpg" ToolTip='<%# ...
0
votes
0answers
12 views

datagrid eval() a base class property

I have a class Client which inherits People. People have a property called CPF which I need Eval this value on my DataGrid when load it. It's simple! But I'm getting the follow error: ...
-1
votes
1answer
31 views

Javascript syntax semicolon [closed]

I am new to javascript. I have this code which I want to know what exactly is happening. This might be really a small and a silly question, but any help regarding the matter would be very grateful. ...
1
vote
2answers
36 views

store all the errors occurred on eval() in PHP

Stack community. I'm using the eval() function in PHP so my users can execute his own code in my website (Yes, i know it is a dangerous function, but that's not the point). I want to store all the ...
1
vote
3answers
27 views

How to use Eval function to validate an integer field & then show a text value?

I have this code : <asp:TemplateField HeaderText="Active"> <ItemTemplate> <%#Eval("IsActive")%> </ItemTemplate> ...
0
votes
1answer
32 views

eval() fails to evaluate innerHTML

I have following code structure <script> function load_script() { eval( document.getElementById("mydiv").innerHTML ); } </script> <div id="mydiv">function sum(a,b){return ...
0
votes
2answers
82 views

firefox os privileged app error : call to eval() blocked by csp at jquery 1.9.1

I'm making the firefox OS webApp by jQury. The Application type is privileged for using systemXHR. So I define the permission at manifest file. App is working well at simulator. But when i push the ...
2
votes
3answers
49 views

JavaScript - How to hide global scope from eval'd script

I usually think of global scope as a namespace that always can be accessed from everywhere. I would like to know whether it is theoretically possible to completely hide global scope. For example, ...
1
vote
1answer
74 views

javascript: can i avoid eval in this example?

I have to deal with a customers Javascript Framework for a very specific task. I have this html: <div data-foo="(#a = #b)">...loading</div> In Javascript I get the data-*-Attribute as ...
0
votes
1answer
21 views

How to detect whether a plugin or script has already been loaded without using eval() or requireJS?

I'm working on a plugin that allows to inject 3rd party code into a page (either as iframe or directly into the DOM). My problem is "direct injections", because I need to make sure, I don't add any ...
0
votes
1answer
46 views

Set Label string format from database column - <%# Eval(“ValueColumn”), Eval(“NumberFormatColumn”) %>

I would like to format a label using a format string returned when the grid view is bound to a stored procedure. I want to do something like this, but not this as it doesn't work: <asp:Label ...
0
votes
0answers
35 views

Eval in EXT js presents Faiulres in IE

I have a problem with eval in my code, in firefox my code works properly, but in Explorer appears the tipical failure, i dont know how i can solve this problem. var pintarVentanaConsulta = ...
0
votes
1answer
54 views

Setting variables in perl config file eval

I've got a perl script and a .config file and want to store some hashes in the config file with some variables as its value, then dynamically change them from my perl script. Config File: ...
0
votes
2answers
33 views

Parsing functions stored as strings in object literal/JSON syntax and differetiating

There is a previous question (here), however the answers there does not answer my question exactly - the accepted answer contained invalid JSON (mandating the use of eval()), which is simply not ...
1
vote
1answer
97 views

Better way to evaluate mathematical expression in python? [duplicate]

Say I have 50,000 lines of string that contain simple mathematical expression (only +,- operator involve e.g. 1+2+3+5). I know that it is handy to use eval() in Python to evaluate those strings. ...
0
votes
0answers
17 views

Eval expr that generate XML file

For a side project, i want to write an eval expr (just boolean for now) wich generate XML file. For example: $./myBinary "TRUE AND (FALSE OR TRUE)" > foo.out $cat foo.out <AND> ...
2
votes
1answer
24 views

How safe is SymPy's sympify(<string>).evalf()?

We know Python's eval() is evil http://nedbatchelder.com/blog/201206/eval_really_is_dangerous.html and threads throughout StackOverflow suggest to use SymPy's evalf(). As a Python newbie, I can't ...
0
votes
3answers
32 views

PHP Eval on an object property

Is it possible to simply this code... echo $object->property1; echo $object->property2; echo $object->property3; ... with something like this, with eval ? for ($i=0; $i<10; $i++) ...
2
votes
1answer
58 views

Actionscript equivalent of “eval”

I'm looking for an Actionscript equivalent for Python / PHP / etc.'s eval() function, which dynamically executes code from an arbitrary string.
2
votes
2answers
41 views

Eval a string without string interpolation

AKA How do I find an unescaped character sequence with regex? Given an environment set up with: @secret = "OH NO!" $secret = "OH NO!" @@secret = "OH NO!" and given string read in from a file that ...
0
votes
5answers
80 views

Eval() display custom value if null

<td> <asp:Label ID="TypeOfPaintingLabel" runat="server" Text='<%# Eval("TypeOfPainting") %>' /> </td> Does anyone know how this works? I want to display ...
0
votes
3answers
35 views

using if statement and an asp.net control in a repeater

I'm trying to use an asp.net controller in a asp.net repeater but I get error.here is my codeblock. <td><% if ((bool)Eval("isMenu") == true) {%><asp:ImageButton ...
0
votes
1answer
38 views

eval function in code igniter [closed]

I'm new to code igniter and I want to know how to use eval function in code igniter? When I try to use eval function in native php it works perfectly. But When I use the same code in code igniter it ...
0
votes
0answers
35 views

DataBinder.Eval not formatting a Container.DataItem value

What seems to be a simple process is not working. I just want to format a price value coming from a datasource to display in a currency format. In my page load I perform the following: Dim dt ...
0
votes
2answers
69 views

How to call New variable Class Name in coffeescript without eval

So, I have a standard class that is extended by child classes. In some cases, I'm passing what child class to use through jQuery as a option instead of using the default standard class. Example: ...
-2
votes
0answers
27 views

How to stop eval() from evaluating a text field as an octal

I've got the following scenario: eval("doFunction('026','param2', 'param3');"); The first parameter is not preserved as a text field but rather gets evaluated to 22 because JS believes it is octal. ...
0
votes
2answers
54 views

eval() function in object-oriented programming

Here's the thing: My program is a GUI-based calculator written in python/GTK. In the first version I didn't used classes, so here is a piece of the old code: def show(result): textbox3.set_text( ...
0
votes
1answer
26 views

javascript equivalent of python's compile and exec

In python, one can take a string containing python code, compile it and run the resulting code with exec. Can something similar be done with javascript (any implementation is good). My objective is ...
1
vote
1answer
26 views

“Jump dictionaries”, switch statements, or how to do “jump dictionaries” without eval?

I like the concept of "jump dictionaries" that contain key:values, where the values are functions. I'm not sure if I should like this concept or not, though. I want to replace a long list if if-else ...
0
votes
1answer
75 views

How to execute eval() code and get all the params

The Problem I'm allowing the user to write some code in text code editor something like this eg: var Player = function(){ this.x = 0; this.y = 0; this.width = 32; this.height = 64; ...
1
vote
1answer
81 views

ASP.NET: Using Eval in an if statement

I have a repeater. In the past, each item in the repeater had an associated text box. But, now I added an attribute to the repeated item that needs to specify if a text box, larger text box, or check ...
0
votes
2answers
48 views

Using Eval to Set AutoPostBack Property in ItemTemplate

I am using a RadGrid from Telerik and trying to toggle a RadioButtonList's AutoPostBack property based on a CheckBox elsewhere on the page. <telerik:RadGrid ID="rg" runat="server" ...
0
votes
4answers
109 views

Eval Base64 virus Wordpress

I'm using a wordpress blog today i got a comment like this . <!-- unsafe comment zapped --> ...

1 2 3 4 5 31