In a web application, how do I determine whether the first letter in a given string is upper- or lower-case using JavaScript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use
If you're going to be using this on a regular basis, I would suggest putting it in a function on the String prototype, something like this:
Update (based on comments) I don't know what you actually want to do in the case that the string does not being with a letter, but a simple solution would be to add a quick check to see if it does or not, and return false if not:
|
|||||||
|
|
This will work only with English alphabet.
|
||||
|
|||
|
|
|
This will be called recursively until a first letter in a string is approached, otherwise returns
Testing:
|
||||
|
|
|
I'm surprised no one's offered a regex solution to this - it seems like the easiest by far:
Blatantly stealing @Lapple's test cases:
|
|||
|
|
