国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

實(shí)用函數(shù)- 判斷輸入的是否是電話號(hào)碼

2019-11-18 21:02:12
字體:
供稿:網(wǎng)友
Source Code
--------------------------------------------------------------------------------
<%
'******************************************************************************
' ********************** DO NOT DELETE ****************************************
'
' COPYRIGHT NOTICE: Copyright 2000 Nicholas P. LaDieu, node i internet consulting
'
' This code is free for non-commercial use. Any commercial usage or
' duplication requires a licensing agreement from the author who may be
' contacted at the following email address: nick@nodei.com
'
' The author assumes no responsibility for any damage caused by the
' PRoper or inproper use of this code.
'
' http://www.nodei.com
' ********************** DO NOT DELETE ****************************************
'******************************************************************************
Function IsPhone(X)
Dim FieldOk
FieldOk=True
For i = 1 to len(X)
   If IsNumeric(mid(X, i, 1))=False AND mid(X,i,1)<>"-" AND mid(X,i,1)<>"(" AND mid
(X,i,1)<>")" then
FieldOk=False
    End If
Next
'''''''''''''''''NOW STRip OUT CHARS AND SEE IF WE HAVE A VALID NUMBER

For I = 1 To Len(X)
strCurrentChar = Mid(X, I, 1)
' Numbers (0 to 9)
If Asc("0") <= Asc(strCurrentChar) And Asc(strCurrentChar) <= Asc("9") Then
strTemp = strTemp & strCurrentChar
End If
' Upper Case Chars (A to Z)
If Asc("A") <= Asc(strCurrentChar) And Asc(strCurrentChar) <= Asc("Z") Then
strTemp = strTemp & strCurrentChar
End If
Next 'I
X=strTemp


if len(X)=10 AND Left(X,1)="1" then
FieldOk=False
end if

if len(X)<10 then
FieldOk=False
end if

if len(X)>11 then
FieldOk=False
end if

IsPhone=FieldOk
End Function
'''''''''''''''''''''''''''''''''''''''''''''''
'''''''''''''''''''''''''''''''''''''''''''''''
%>
 
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 宝丰县| 改则县| 五常市| 荔浦县| 凤山县| 房山区| 溆浦县| 海盐县| 惠水县| 新疆| 抚顺县| 寿宁县| 霞浦县| 谷城县| 长武县| 观塘区| 三亚市| 舞钢市| 云安县| 防城港市| 永平县| 百色市| 德州市| 多伦县| 金阳县| 柳江县| 大兴区| 余江县| 平顺县| 湘乡市| 武乡县| 南平市| 同心县| 郸城县| 若尔盖县| 九龙城区| 乌拉特中旗| 枣强县| 行唐县| 襄汾县| 朔州市|