Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A JSON array has the form:

[[a,b,c],[a,b,c],[a,b,c]]

Is there a better way than split?

share|improve this question

3 Answers

up vote 7 down vote accepted

No, this is most certainly not the best way to parse JSON. JSON parsers exist for a reason. Use them.

In JavaScript, use JSON.parse:

var input = '[[1,2,3],[1,2,3],[1,2,3]]';
var arrayOfArrays = JSON.parse(input);

In PHP, use json_decode:

$input = '[[1,2,3],[1,2,3],[1,2,3]]';
$arrayOfArrays = json_decode($input);
share|improve this answer
@stack.user.0—JASON.parse was introduced in ES5, there are still a good number of older browsers around that do not support it so you still need a JSON library to fill the gaps. – RobG Jan 6 '12 at 2:04
1  
You might want to re-read the RFC (linked in my answer). From section 2: "A JSON text is a serialized object or array." And section 8 gives a clear example of a JSON array. – jsumners Jan 6 '12 at 2:49
@jsumners thanks, I stand corrected. Always thought the top-level element had to be an object. Thank you for clearing that up for me! I feel like an idiot. – Matt Ball Jan 6 '12 at 2:54

You do not need to use regular expressions. As has been mentioned, you must first have valid JSON to parse. Then it is a matter of using the tools already available to you.

So, given the valid JSON string [[1,2],[3,4]], we can write the following PHP:

$json = "[[1,2],[3,4]]";
$ar = json_decode($json);
print_r($ar);

Which results in:

Array
(
    [0] => Array
        (
            [0] => 1
            [1] => 2
        )

    [1] => Array
        (
            [0] => 3
            [1] => 4
        )

)

If you want to decode it in JavaScript, you have a couple options. First, if your environment is new enough (e.g. this list), then you can use the native JSON.parse function. If not, then you should use a library like json2.js to parse the JSON.

Assuming JSON.parse is available to you:

var inputJSON = "[[1,2],[3,4]]",
    parsedJSON = JSON.parse(inputJSON);

alert(parsedJSON[0][0]); // 1
share|improve this answer
i believe json_decode($json); without the second parameter TRUE will return objects. see php.net/manual/en/function.json-decode.php – ianace Jan 6 '12 at 2:27
Uh, I wrote the PHP and ran it through the interpreter before posting. The second parameter set to true would turn {"foo":"bar"} into an associative array instead of an actual object. I didn't pass an object to the decoder. I passed an array. – jsumners Jan 6 '12 at 2:39

In JavaScript , I think you can use Eval() → eval() method...

share|improve this answer
5  
No, no no no no... JSON.parse. – Matt Ball Jan 6 '12 at 1:37
Yes , I know that . I just said one way to implement it. Before Json.parse appeared , I always use it in my old project . :) – shenhengbin Jan 6 '12 at 1:41
Well, there are better, safer ways of doing it now. Also, it's eval, not Eval (case matters). – Matt Ball Jan 6 '12 at 1:46
OK , You are right . It's my miss. Thank you. – shenhengbin Jan 6 '12 at 1:48
@MДΓΓБДLL: I know it's a gap filler for deficient browsers, but at the heart of Douglas Crockford's json2.js JSON.parse method is an eval. github.com/douglascrockford/JSON-js/blob/master/json2.js – Brandon Boone Jan 6 '12 at 3:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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