Use regular matching, only numbers and commas are allowed
var str = "2456789,2345678765432,,,,234567876543,,,45678976543,,,,3456765432";
The comma in the middle of the number is only allowed to appear once; replace more with empty; how to write. Where is the master...
The desired results are 2456789, 2345678765432, 234567876543, 45678976543, 3456765432;
我想大声告诉你2017-05-16 13:05:28
var re = /\d+\,?/g;
var str = "2456789,2345678765432,,,,234567876543,,,45678976543,,,,3456765432";
var myArray = str.match(re);
console.log(myArray);
VM389472:4 (5) ["2456789,", "2345678765432,", "234567876543,", "45678976543,", "3456765432"]