- 此问题在此处已有答案**:
Remove empty elements from an array in Javascript(48个答案)
19小时前关门了。
var str = '1,2,1,,3';
str = Array.from(new Set(str.split(','))).toString(); // remove duplicates
// str = '1,2,,3'
console.log(str)
我需要删除字符串中的空元素。
e.g: '1,2,' => '1,2'
',1,2' => '1,2'
'1,,2' => '1,2'
希望大家帮帮我。
1条答案
按热度按时间iszxjhcz1#