Function IsDaxie(patrn, str)
if len(str)<>16 then
IsDaxie=false
else
Dim regEx, retVal ' 建立变量。
Set regEx = New RegExp ' 建立正则表达式。
regEx.Pattern = patrn ' 设置模式。
regEx.IgnoreCase = FALSE ' 设置是否区分大小写。
retVal = regEx.Test(str) ' 执行搜索测试。
If retVal Then
IsDaxie= true
Else
IsDaxie = false
End If
end if
End Function
response.write( IsDaxie("^[A-Z]+$","AAAAAAAAAAAAAAAa"))