数组与字符串的相互转换

1、数组转字符串

需要将数组元素用某个字符连接成字符串,示例代码如下

var a, b;
a = [0,1,2,3,4];
b = a.join("-");      //"0-1-2-3-4"

2、字符串转数组

实现方法为将字符串按某个字符切割成若干个字符串,并以数组形式返回,示例代码如下:

var str = "aaa,bbb,ccc";
strArr = str.split(",");// 在每个逗号(,)处进行分解  ["aaa", "bbb", "ccc"]
var hello = "helloworld";
helloArr = hello.split('');  //["h", "e", "l", "l", "o", "w", "o", "r", "l", "d"]
原文地址:https://www.cnblogs.com/sese/p/9802780.html