A JSON array has the form:
[[a,b,c],[a,b,c],[a,b,c]]
Is there a better way than split?
|
A JSON array has the form:
Is there a better way than split? |
||||
|
|
|
No, this is most certainly not the best way to parse JSON. JSON parsers exist for a reason. Use them. In JavaScript, use
In PHP, use
|
|||||||||
|
|
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
Which results in:
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 Assuming
|
|||||
|
|
In JavaScript , I think you can use |
|||||||||||||
|