欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

join()、split()

程序员文章站 2024-03-26 11:37:29
...

join()用于把数组转化为字符串

var arr=['hello','world','kugou'];
document.write(arr.join(''));//helloworldkugou

split()用于吧字符串转化为数组

第一种 分割成一个一个的字母

var str='hello,world';
document.write(str.split(''));//h,e,l,l,o,,,w,o,r,l,d

第二种 分割成单词

var str='hello,world';
document.write(str.split(' '));//hello,world

第三种 只返回一部分字符串

var str='hello,world';
document.write(str.split('',2));//h,e