vote up 2 vote down star
1

How can I test if a letter in a string is uppercase or lowercase using JavaScript?

flag

can i just clarify the question - you want to test if a particular letter in a string is upper or lower - or do you want to test if the whole string contains any letter that is uppercase or lowercase. if it is the latter then how do you propose getting the result without looping through the string and testing one letter at a time? – Josh Jun 22 at 14:02

6 Answers

vote up 1 vote down check

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++;
}
link|flag
vote up 5 vote down
function isUpperCase(myString) { 
  return (myString == myString.toUpperCase()); 
} 
function isLowerCase(myString) { 
  return (myString == myString.toLowerCase()); 
}
link|flag
i believe this solution only works if the string is one character long and that character is the character of interest...you'd need to get the character first before calling either of these methods – zaczap Jun 22 at 13:41
1  
@zaczap - incorrect. These will transform (and then test) the entire string. – scunliffe Jun 22 at 13:42
2  
+1 to the comments - this answer is slightly off, in respect to the original question, which asked about a letter in a string (Not the whole string) – belugabob Jun 22 at 13:47
Let's not forget strict equality checking! === FTW! – J-P Jun 22 at 13:49
@all - correct it will only test against a whole string - you could loop through the letters within a string to test each one. – Josh Jun 22 at 13:52
show 1 more comment
vote up 8 vote down
if (character == character.toLowerCase())
{
  // The character is lowercase
}
else
{
  // The character is uppercase
}
link|flag
vote up 2 vote down
String.prototype.isUpper = function(pos){return this.charCodeAt(pos)<90;};

alert('stringIsUpperCaseTest'.isUpper(7)); //true

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

String.prototype.isUpper = function(pos){
    var chr= this.charAt(pos);
    return chr === chr.toLowerCase();
};
link|flag
vote up 4 vote down

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.

 function isUpperCase(myString, pos) { 
      return (myString.charAt(pos) == myString.charAt(pos).toUpperCase()); 
    } 


  function isLowerCase(myString, pos) {

       return (myString.charAt(pos) == myString.charAt(pos).toLowerCase()); 
    }
link|flag
vote up 0 vote down

Regular Expressions anyone. This is how you perfectly do this with RegExp:

 var check = /[:lower:]/;
 alert(check.test("R")); //False
 alert(check.test("r")); //True
 alert(check.test("1")); //False
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.