JavaScript 使用split 以中英文逗号、空格(一个或多个)分割字符串

var str = 'lQT,hello,world,123 6';
console.log(str.split(/,|,|\s+/));

你可能感兴趣的:(js)