I am making a asynchronous request to my server and its returning an array as a string. The string is in the proper array form for example:

"[{"spo":"I"},{"spo":"hate"},{"spo":"computers"}]"

Is there a way to simply create an array from this string?

link|improve this question

The builtin JSON function is best if available, you can also use eval: var x = '[1,2,3]';alert(eval(x));. That's how it was done in pre-JSON browsers. – RobG Jul 8 '11 at 8:41
feedback

3 Answers

up vote 6 down vote accepted

That's a JSON string, you can create an array from it with:

JSON.parse('[{"spo":"I"},{"spo":"hate"},{"spo":"computers"}]')

In older browsers you may need to include the json2.js.

link|improve this answer
1  
JSON.parse will return an Array object? – Shamim Hafiz Jul 8 '11 at 8:05
1  
Yes it does, if the provided string is an encoded array which now is. – KARASZI István Jul 8 '11 at 8:05
My issue come from IE6. Fixed it as soon as I got you hint. – James Andino Jul 8 '11 at 8:11
feedback

If you use jQuery, you can get it as array by specifying the dataType as Json. See jQuery.getJSON()

link|improve this answer
Same as in Mootools and includes support for IE6 – James Andino Jul 8 '11 at 8:14
1  
Cool, include a 90k script to do something that can be done with built-in functions. – RobG Jul 8 '11 at 8:40
I meant to say if they are using jQuery. And jQuery is not 90k, just 31KB (minified). – Technowise Jul 8 '11 at 10:03
feedback

The string happens to correspond to the JSON format, so you can use a JSON parser to turn it into an array, for example the JSON parser in jQuery:

var myLittleArray = $.parseJSON(theJsonString);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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