Javascript清除字符串中重复的字符
2010年12月22日 | javascript, 前端技术
0条评论 |
主要代码:
[code lang=”js”]
String.prototype.removeRepeats = function () {
var str = this;
while (str.match(/(.).*?\1/g) != null) str = str.replace(RegExp.$1, “”);
return str;
}
[/code]
利用While循环和正则表达式查找字符串中相同的字符并删除该字符
看演示:http://demo.joyfulboy.cn/js/string/string-removeRepeats.html