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".
|
||
|
|
|
|
Yes, any string in JavaScript has a toLowerCase() method that will return a new string that is the old string in all lower case. The old string will remain unchanged. So, you can do something like:
|
|||
|
|
|
|
|
||
|
|
|
|
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 |
||
|
|
|
|
toLocaleUpperCase() or lower case functions don't behave like they should do. For example in 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 found. 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. |
||
|
|