VB.NET校驗字符串函數(shù)
更新時間:2015年05月19日 15:07:49 投稿:hebedich
本文給大家分享的是2個vb.net中驗字符串類型的函數(shù),十分的簡單實用,有需要的小伙伴可以參考下。
VB.NET校驗字符串是否是日期
'Validate for a date
Shared Function checkdate(ByVal thisvalue As String) As String
If Not IsDate(thisvalue) Then
checkdate = "NULL"
Else
checkdate = "'" & thisvalue & "'"
End If
Return checkdate
End Function ' END checkdate
VB.NET檢查字符串是否是數(shù)字
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'Used to submit values to the database, check for empty value, replace w/ "NULL"
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Shared Function checkNumber(ByVal thisvalue As String) As String
If IsDBNull(thisvalue) Or Len(thisvalue) = 0 Or Not IsNumeric(thisvalue) Then
checkNumber = "NULL"
Else
checkNumber = thisvalue
End If
Return checkNumber
End Function ' END checkNumber
以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

