Tagged Questions

5
votes
9answers
257 views

Is there ever a good reason to use eval() ?

It seems to me that eval() is treated with the same disdain that goto is. And by eval, I mean a function for executing a string as code, as seen in PHP, Python, JavaScript, etc.. Is there ever a …
0
votes
4answers
84 views

Passing a list to eval()

Is there a way to pass a list as a function argument to eval() Or do I have to convert it to a string and then parse it as a list in the function? My simple example looks like: eval("func1(\'" + …
0
votes
1answer
31 views

mysql - store embed codes (youtube, vimeo etc)

How best to store the html for embedding? the only ways I can think of are: take the embed html and add <?php echo $var1; ?> where the id's go then store it in the db and use Eval to execute …
0
votes
3answers
25 views

mysql/php - store html templates within the a database

I am wondering the best way to store html templates in a database where I am able to retrieve them and insert variables. Obviously I could store them as php and then 'EVAL' the record.... but I heard …
4
votes
5answers
91 views

How can I evaluate chained expressions from a string, in Perl?

I'm not really sure what to call these type of expressions, so an example would be easier... Is there a way in Perl to evaluate expressions like a < b <= c? I have a configuration file that …
4
votes
6answers
115 views

Parsing a string which represents a list of tuples

I have strings which look like this one: "(8, 12.25), (13, 15), (16.75, 18.5)" and I would like to convert each of them into a python data structure. Preferably a list (or tuple) of tuples …
0
votes
3answers
77 views

Find answer to string equation without using eval()

I need a way of taking an equation given as a string and finding it's mathematical answer, the big caveat is that I can't use eval(). I know the equation will only ever contain numbers, the four …
0
votes
5answers
57 views

Count calls to eval

Hi I would like to count the number of calls made to eval in our javascript application. I came up with the following, but it generates errors. These errors are hard to track, and my knowledge of …
0
votes
1answer
50 views

Understanding asp.net Eval() and Bind()

Can anyone show me some absolutely minimal asp.net code to understand Eval() and Bind()? It is best if you provide me with two separate code-snippets or may be web-links.
0
votes
0answers
29 views

localy execute actionscript bytecode

i want to execute a piece of bytecode so that it will run in a specific scope ? for example i want to be able to run this code label.x = 100+label.width and have it react to a label instance that …
0
votes
6answers
57 views

How does eval function work in PHP ?

I am trying to figure out how does eval() function works in a simple way. I tried the following code but it doesn't work, instead it shows up a parse error. <?php $str = "exit()"; …
2
votes
2answers
50 views

How do I simplify bash’s ‘eval “$TIME $BIN_FILE $BIN_OPTS &> $LOG_FILE”’ and keep it working?

I'm updating a bash script which serves as a program testing tool. Previously, I had this line in a script working perfectly ($BIN_FILE is set to a relative path to the binary being tested): …
0
votes
5answers
42 views

HyperLink with NavigateUrl with Eval(). Where is a mistake?

First I was changing HyperLink.NavigateUrl in code-behind on Page_Load(). But after I decided to do it in design using Eval() method. <asp:HyperLink runat="server" NavigateUrl='<%# …
2
votes
4answers
82 views

R eval expression

Hi all, I'm curious to know if R can use its "eval" function to perform calculations provided by e.g. a string. This is a common case > eval("5+5") However, instead of 10 I get [1] "5+5" …
2
votes
2answers
70 views

Use recursion instead of EVAL

Hello everybody, I have a list of items in a page that must be hidden in sequence, but just after the previous item has been totally hidden. I made the following code, where I create a big string …

1 2 3 4 5 9 next
15 30 50 per page