您好,欢迎来到点滴吧! 手机版
点滴吧www.diandiba.com
记录点点滴滴,尽在点滴吧
  • 文章
  • 文章
  • 特效
  • 素材
  • 景点
您现在的位置:首页 > ASP教程 > 文章正文
Asp判断字符串中是否包含连续的重复字符
更新时间:2015/1/5 17:31:07   点击:1925次

不允许字符串中连续重复超过2次,可以在发布信息网站禁止标题中发布某些无意义的重复字符。


函数代码:

<%
function checkrepeat(txt)  
    checkrepeat=false  
    initialtxt=""  
    num=1  
    for i=1 to len(txt)  
        character=mid(txt,i,1)  
        if character=initialtxt then  
            num=num+1  
        else  
            num=1  
        end if  
        initialtxt=character  
        if num>2 then  
            checkrepeat=true    
        end if  
    next  
end function  
%>

调用方法:

<%
text="www.tianzhigang.com"  
if checkrepeat(text)=true then  
response.Write("有重复超过2个的字符!")  
else  
response.Write("无重复超过2个的字符!")  
end if
%>


相关文章
导航分类
热门文章
关于我们| 联系我们| 免责声明| 网站地图|
CopyRight 2012-2015 www.diandiba.com - 点滴吧 All Rights Reserved
滇ICP备09005765号-2