How can I convert a JavaScript string value to be in all lower case letters?
Example: "Your Name" to "your name"
|
How can I convert a JavaScript string value to be in all lower case letters? Example: "Your Name" to "your name" |
|||||||||||||||||||||
|
|
|||||
|
|
Use either toLowerCase or toLocaleLowerCase methods of the String object. The difference is that
Example:
Also note that the
and which is effectively equivalent to:
The second form is generally preferred for its simplicity and readability, but the first has the benefit that it can work with a |
|||||||||
|
|
Yes, any string in JavaScript has a So, you can do something like:
|
||||
|
|
|
toLocaleUpperCase() or lower case functions don't behave like they should do. For example in my system, Safari 4, Chrome 4 Beta, Firefox 3.5.x it converts strings with Turkish characters incorrectly. The browsers respond to navigator.language as "en-US", "tr", "en-US" respectively. But there is no way to get user's Accept-Lang setting in the browser as far as I could find. Only Chrome gives me tr although I have configured every browser as tr-TR locale preferred. I think these settings only affect HTTP header, but we can't access to these settings via JS. In the Mozilla documentation it says "The characters within a string are converted to ... while respecting the current locale. For most languages, this will return the same as ...". I think it's valid for Turkish, it doesn't differ it's configured as en or tr. In Turkish it should convert "DİNÇ" to "dinç" and "DINÇ" to "dınç" or vice-versa. |
|||||||
|
|
example
try it on
|
|||
|
|
|
Note that the function will ONLY work on STRING objects. For instance, I was consuming a plugin, and was confused why I was getting a "extension.tolowercase is not a function" JS error.
Which produced the error "extension.toLowerCase is not a function" So I tried this piece of code, which revealed the problem!
The output was"(typeof extension)=>object<=" - so AhHa, I was NOT getting a string var for my input. The fix is straight forward though - just force the darn thing into a String!:
After the cast, the extension.toLowerCase() function worked fine. |
|||
|
|
|
I payed attention that lot's are looking for I would recommend using native Javascript function
Here's the function that behaves exactly the same as PHP one (for those who are porting PHP code into js)
|
|||||||||
|