码迷,mamicode.com
首页 > 其他好文 > 详细

join()、split()

时间:2016-11-29 14:56:04      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:class   split   rip   font   span   world   join   hello   asc   

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

  

  

 

join()、split()

标签:class   split   rip   font   span   world   join   hello   asc   

原文地址:http://www.cnblogs.com/ruir/p/6113203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!