js删除重复字符的代码

发布时间:2020-04-30编辑:脚本学堂
分享一例删除重复字符的js代码,js实现字符串去除重复的值,有需要的朋友参考下。

例子,删除重复字符的js代码
 

复制代码 代码示例:
<script type="text/vbscript">
<!--
   dim str
   str="您好,欢迎来到脚本学堂"
   set regex = new regexp
   regex.pattern = "((.{1,3}?)2{2,})"
   regex.global = true
   regex.ignorecase = true
   set matches = regex.execute(str)   ' 执行搜索。
  for each match in matches      ' 循环遍历matches集合。
    alert("重复的字符:" & match.submatches(1))
    alert("整个重复的字符:" & match.submatches(0))
  next
//-->
</script>