join()split()
Posted Loriby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了join()split()相关的知识,希望对你有一定的参考价值。
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()的主要内容,如果未能解决你的问题,请参考以下文章
Python入门-2编程基本概念:17字符串-split()分割-join()合并-join()效率测试