split(), reverse(),join()等函数用法

简介: split(), reverse(),join()等函数用法
split()函数,join()函数:
split函数是将一个字符串分割成字符串数组。join函数是将数组中的所有元素放入字符串中。例如:比如我们有个字符串"a",“b”,“c"我们要输出为a,b,c这样的格式,那么我们可以这样:
var a = [“a”,“b”,“c”];
document.write(a); //a,b,c
若使用join,那必须得这样:
var a = [“a”,“b”,“c”].join(”,");
document.write(a);//a,b,c
如果你说你要直接输出abc,而不输出a,b,c,那使用join再合适不过。
var a = [“a”,“b”,“c”].join("");
document.write(a);//abc
其它如
var a = [“a”,“b”,“c”].join("@");
document.write(a);//a@b@c
split():
var a = a@b@c;
var b = a.split("@");
document.write(b);//a,b,c
reverse()函数:是将数组中的元素颠倒过来
[“Banana”, “Orange”, “Apple”,“Mango”].reverse();//Mango,Apple,Orange,Banana
相关文章
|
7月前
|
Python
split和join的区别
split和join的区别
|
7月前
|
Python
reverse函数
reverse函数。
56 0
|
搜索推荐 C++
sort()函数详解
sort()函数详解
136 0
|
Python
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
235 0
join()与split()函数的区别
join()与split()函数的区别
175 0
join()与split()函数的区别
|
搜索推荐 容器
常用排序算法 sort() random_shuffle() merge() reverse()
常用排序算法 sort() random_shuffle() merge() reverse()
常用排序算法 sort() random_shuffle() merge() reverse()
C#编程:用Array.Reverse反转字符串-1
C#编程:用Array.Reverse反转字符串-1
173 0
C#编程:用Array.Reverse反转字符串
C#编程:用Array.Reverse反转字符串
381 0
|
机器学习/深度学习 .NET 索引
LInq之Take Skip TakeWhile SkipWhile Reverse Union Concat 用法
废话不多说,直接上代码,代码有注释!自行运行测试! class Program { static void Main(string[] args) { string[] names = { "郭靖", "李莫愁", "欧阳晓晓", "黄蓉", "黄药师", "郭靖", "黄蓉" }; //Take()方法:用于从一个序列的开头返回指定数量的元素。
1043 0