Posted By


CaptainProton on 03/24/10

Tagged


Statistics


Viewed 205 times
Favorited by 0 user(s)

isLetter(String)


/ Published in: Visual Basic
Save to your folder(s)

This method checks whether a given string is a letter (no umlauts).
The string should only be one character.


Copy this code and paste it in your HTML
  1. Public Function isLetter(str As String)
  2. isLetter = (InStr(1, "abcdefghijklmnopqrstuvwxyz", LCase(str)) > 0)
  3. End Function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.