摘要: \将下一个字符标记为一个特殊字符、或一个原义字符、或一个 后向引用、或一个八进制转义符。例如,'n' 匹配字符 "n"。'\n' 匹配一个换行符。序列 '\\' 匹配 "\" 而 "\(" 则匹配 "("。^匹配输入字符串的开始位置。如果设置了 RegExp 对象的 Multiline 属性,^ 也匹配 '\n' 或 '\r' 之后的位置。$匹配输入字符串的结束位置。如果设置了RegExp 对象的 Multiline 属性,$ 也匹配 阅读全文
posted @ 2011-11-15 22:04 万德源 阅读(135) 评论(0) 推荐(0) 编辑
摘要: dim status status="false"tempIP = Request.ServerVariables("Remote_Addr") response.write(tempIP&"h1<br>")Set regEx = New RegExp regEx.IgnoreCase = True regEx.Global = True MyArray = Array("47.153.*.*","47.154.*.*","58.30.*.*"," 阅读全文
posted @ 2011-11-15 21:59 万德源 阅读(388) 评论(0) 推荐(0) 编辑