search

Home  >  Q&A  >  body text

javascript - js regular matching problem

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;

PHP中文网PHP中文网2741 days ago361

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-05-16 13:05:28

    replace(/,+/g, ",")

    reply
    0
  • 我想大声告诉你

    我想大声告诉你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"]

    reply
    0
  • Cancelreply