I have a multi-dimensional array like this:
1 2 3
4 5 6
Now I need to convert this array into a string like 1,2,3;4,5,6.
Can any one suggest how to do this, please?
|
I have a multi-dimensional array like this: 1 2 3 4 5 6 Now I need to convert this array into a string like Can any one suggest how to do this, please? |
||||
|
|
simply use the
It's lucky that you simply don't have to consider how the apply the join method on the inner lists, because |
|||||||||||
|
|
As it was already mentioned by qiao,
|
||||
|
|
|
If you need to serialize an array into a string and then deserialize it later to get an array from the string you might want to take a look at http://www.openjs.com/scripts/data/json_encode.php
See here for reference: http://www.w3schools.com/jsref/jsref_tostring_array.asp
|
|||||||
|