I'm using a thrid party javascript library that uses eval() so when i call one of it's functions with the "1e-1" value as a parameter i get 0.1 returned. How can i escape this or avoid it from parsing the number?

A basic example would be:

console.log(eval("1e-1"));

I want the result to be 1e-1, but eval still needs to be there.


EDIT:

Okay Ignore the console example above THIS is the example it should work on:

There is no way around using this library. Sorry.

link|improve this question

2  
Reject Javascript frameworks which make excessive use of eval. eval = evil. – Jamiec Jan 31 at 15:03
If I've understood what you want correctly, can you wrap the 1e-1 in quotes? Then it would be treated as a string literal: eval("'1e-1'"); – James Allardice Jan 31 at 15:05
I tried that. I tried character codes, i tried special characters, appending  . I tried all the obvious things. – capdragon Jan 31 at 15:07
@capdragon - The quotes should definitely work. The string you pass to eval contains a string literal. It won't do anything special with it. – James Allardice Jan 31 at 15:09
@JamesAllardice : Yes it does work. Thanks. – capdragon Jan 31 at 15:10
show 2 more comments
feedback

2 Answers

Dont use eval(). Of course, Number("1e-1") has the same "problem". However, if you want a string back from eval you have to feed it with one: eval("'1e-1'").

link|improve this answer
I agree, though the OP states a library is using it, so it's likely out of the poster's control. – Jeffrey Sweeney Jan 31 at 15:12
So then, as Jamiec said above, don't use that library :-) – Bergi Jan 31 at 15:18
As the old saying goes: if the wheel's square, reinvent it! – Jeffrey Sweeney Jan 31 at 15:24
It should work here:jsfiddle.net/vLpt6/42 – capdragon Jan 31 at 15:34
feedback

One quick way to do this is to simply replace the hyphen with it's Character Entity code instead:

console.log(eval("1e-1"));

Update

After experimenting for quite a while, the only thing that was close is placing spaces before and after the hyphen:

features[1].attributes.tag= "1e - 1";

I thought it worth mentioning incase this will suffice for what you need.

link|improve this answer
I get an error missing exponent – capdragon Jan 31 at 15:05
What does the function do that you're passing this to? Why are you passing this value to the function atall if you don't want it to use the value correctly? A bit more information will be very helpful. – Jamie Dixon Jan 31 at 15:10
Okay, more info to come... – capdragon Jan 31 at 15:11
I've updated my question. – capdragon Jan 31 at 15:34
I've not had much luck either but i've updated with a possible solution for you. I hope this helps and I'll come back if I discover something more useful. – Jamie Dixon Jan 31 at 16:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.