js之split拆分字符串

1.单字符拆分

let arr = str.split(',')

2.多字符拆分

let arr = str.split(/[(),]/)

 

相关文章: