Files
windows_lock_vb/Yjpp36/service/StringHelper.vb

10 lines
325 B
VB.net
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Public Class StringHelper
' 判断是否全字母数字Unicode 支持)
Public Shared Function IsAllLetterOrDigit(input As String) As Boolean
For Each ch As Char In input
If Not Char.IsLetterOrDigit(ch) Then Return False
Next
Return True
End Function
End Class