js正则运用去除头尾的指定符号 let a = ['5454212'] let b = a.toString() b.replace(/^\['|\']$/g,'');//去除前后的数组符号和引号 console.log(typeof(b));//5454212