首页 > 学院 > 开发设计 > 正文

ASP正则匹配URL的正确性

2019-11-17 04:14:03
字体:
来源:转载
供稿:网友
Function iswww(strng)   
    iswww = false   
    Dim regEx, Match   
    Set regEx = New RegExp   
    regEx.Pattern = "^(http|ftp|https):////[/w/-_]+(/.[/w/-_]+)+([/w/-/.,@?^=%&:/~/+#]*[/w/-/@?^=%&/~/+#])?$"  
    regEx.IgnoreCase = True  
    Set Match = regEx.Execute(strng)   
    if match.count then iswww= true   
End Function
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表