正则 去掉重复字符串
function delReiteration(str) { var reg = /(.).*?\1/g; while (str.match(reg) != null) { str = str.replace(RegExp.$1, ''); } return str; } var str = 'abcdfdcea13241342'; alert(delReiteration(str));
function delReiteration(str) { var reg = /(.).*?\1/g; while (str.match(reg) != null) { str = str.replace(RegExp.$1, ''); } return str; } var str = 'abcdfdcea13241342'; alert(delReiteration(str));