Recent Blog Posts
Blogs ยป Archive for April 13th, 2004
Upper case / Lower case functions
…posted by davidjmedlock:
This originated out of some project I was thinking about doing and I though it’d be useful for others. These functions check to see if a character is upper case or lower case:
function isUpperCase(character) {
if (Asc(character) gte 65 and Asc(character) lte 90) {
return true;
}
else {
return false;
}
}
function isLowerCase(character) {
if (Asc(character) gte 97 and Asc(character) lte 122) {
return true;
}
else {
return false;
}
}
#isUpperCase(”A”)#
#isLowerCase(”A”)#
#isUpperCase(”a”)#
#isLowerCase(”a”)#
Have fun with it.
Sponsored Links
SitePoint Marketplace
Buy and sell Websites, templates, domain names, hosting, graphics and more.
Want More Traffic?
Get up to five quotes from qualified SEO specialists, with no obligation!
Download sample chapters of any of our popular books.



