刪除重復字符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>