match方法对相同数字进行分组2020-09-04 本文已影响0人 十八岁的天空_b2de const str = '1112233322'; const arr = str.match(/(\d)\1*/g); // arr => [111, 22, 333, 22]