How can I test if a letter in a string is uppercase or lowercase using JavaScript?
|
1
|
|||
|
|
|
The answer by josh and maleki will return true on both upper and lower case if the character or the whole string is numeric. making the result a false result. example using josh
var character = '5';
if (character == character.toUpperCase()) {
alert ('upper case true');
}
if (character == character.toLowerCase()){
alert ('lower case true');
}
another way is to test it first if it is numeric, else test it if upper or lower case example
var strings = 'this iS a TeSt 523 Now!';
var i=0;
var ch='';
while (i <= strings.length){
character = strings.charAt(i);
if (!isNaN(character * 1)){
alert('character is numric');
}else{
if (character == character.toUpperCase()) {
alert ('upper case true');
}
if (character == character.toLowerCase()){
alert ('lower case true');
}
}
i++;
}
|
||
|
|
|
|
|
||||||||||||||
|
|
|
|
||
|
|
|
|
String.prototype.isUpper performs a very simple test. It's just the idea, you can figure out yourself how to exclude non alphabetic characters (65-90 = uppercase A-Z, 97-122 = lowercase a-z) I suppose. Or indeed, use
|
|||
|
|
|
|
More specifically to what is being asked. Pass in a String and a position to check. Very close to Josh's except that this one will compare a larger string. Would have added as a comment but I don't have that ability yet.
|
||
|
|
|
|
Regular Expressions anyone. This is how you perfectly do this with RegExp:
|
||
|
|
