Home > How-To Library > String Manipulation
How to Test if a character is Alpha Numeric.
**************************************************************** * © 2007 CodeItBetter http://www.codeitbetter.com * * This notice MUST stay intact for legal use * **************************************************************** Public Function IsAlphaCharacter(ByVal sChar As String) As Boolean 'Returns true if the input letter is alphabetical in any code page or language. IsAlphaCharacter = (Not (UCase$(sChar) = LCase$(sChar))) Or (sChar = " ") End Function
If you would like to submit your code here please us. Do not forget to mention your name. We are always thankful to each and everyone of you who submitted their code here.