JS处理带逗号和回车的字符串

     foo(str){
            var temp = str.split(/[\n,]/g);
                for(var i =0;i<temp.length;i++){
                if(temp[i] == ""){
                    temp.splice(i, 1);
                    //删除数组索引位置应保持不变
                    i--;
                }
            }
            return temp
       }

   foo(1,2,3); //['1','2','3']

  

posted @ 2020-09-16 10:03  猛猛滴超人  阅读(864)  评论(0编辑  收藏  举报