I'm getting some data from a file, which looks like this:
[200, "Hello", "World"]
Now, since this is a file, this array is inside a string; I turn it into an array using eval().
This works fine BUT the integer at the start is converted to an ascii char, instead of an integer as I want it to (the euro sign).
How can I fix this?