明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

一個(gè)判斷字符串的數(shù)值分類(lèi)

[摘要]支持判斷返回任何數(shù)值型的類(lèi)型數(shù)據(jù): Function GetNumType(sVal) Dim sType If Not IsNumeric(sVal) Then GetNumType="Unknow" Exit Function End If Execute "sT...

支持判斷返回任何數(shù)值型的類(lèi)型數(shù)據(jù):

Function GetNumType(sVal)
Dim sType
If Not IsNumeric(sVal) Then
GetNumType="Unknow"
Exit Function
End If
Execute "sType=TypeName("&sVal&")"
GetNumType=sType
End Function

測(cè)試:
Response.Write GetNumType("9999") '返回:Integer
Response.Write GetNumType("999999999") '返回:Long
Response.Write GetNumType("99999999999999") '返回:Double
Response.Write GetNumType("asdfasd") '返回:Unknow