当前位置: 首页 > 工具软件 > Split.js > 使用案例 >

JavaScript的split&join用法

仲孙善
2023-12-01

目的

在使用js时会遇到将字符串转为数组或将数组转为字符串的需求。

方法

实际使用中目前最简单的方式就是采用split和join的方法进行拆分和组合

	let file1 = "100"
    let list1 = file1.split("");
    let listend = new Array() ;
    for(i=0;i<5;i++){
        console.log("list[i"+i+"]="+list1[i]);
        if(typeof(list1[i])=="undefined"){
            list1[i] = "0";
        }
        listend[i]= parseInt(list1[i])+1;
    } 
            
    let fileend = ""
    fileend = listend.join("");
    console.log("fileend="+fileend);
    fileend = listend.join();
    console.log("fileend="+fileend);

运行结果

list[i0]=1
code.html:61 list[i1]=0
code.html:61 list[i2]=0
code.html:61 list[i3]=undefined
code.html:61 list[i4]=undefined
code.html:70 fileend=21111
code.html:72 fileend=2,1,1,1,1  

方法

注意:join()方法内不带任何参数时,自动补充“,”。如完全不需要补充应采用join("")

 类似资料: