Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert a JavaScript string value to be in all lower case letters?

Example: "Your Name" to "your name"

share|improve this question
102  
+1 for me being too lazy to read the API – Greg Jun 14 '11 at 10:12
108  
google is the API documentation – Nicholas Jul 11 '11 at 14:04
1  
@Andrey - Are you one of the ones that marked it as a favorite? :) – Justin Ethier Nov 11 '11 at 15:23
4  
But +1 because I needed to know the answer to this question and there it is. Even an "obvious" question can be asked once! – Stephen Holt Nov 27 '12 at 12:56
1  
I disagree with or misunderstand the "no research" comment. Is the expectation that we're all supposed to order a Javascript book from Amazon, wait 3 days, and studiously record the answer, and then burn the book (since forgetting is not allowed either)? Or are we allowed to "cheat" and use Google...like every other software developer on the planet? – juwiley Feb 28 at 21:49
show 3 more comments

7 Answers

up vote 750 down vote accepted
"Your Name".toLowerCase();
share|improve this answer
91  
+1 Thank you for just providing an answer instead of wining that this or that person is lazy. We all came here from google. – Lennart Rolland Feb 19 at 13:01

Use either toLowerCase or toLocaleLowerCase methods of the String object. The difference is that toLocaleLowerCase will take current locale of the user/host into account. As per § 15.5.4.17 of the ECMAScript Language Specification (ECMA-262), toLocaleLowerCase

…works exactly the same as toLowerCase except that its result is intended to yield the correct result for the host environment’s current locale, rather than a locale-independent result. There will only be a difference in the few cases (such as Turkish) where the rules for that language conflict with the regular Unicode case mappings.

Example:

var lower = 'Your Name'.toLowerCase();

Also note that the toLowerCase and toLocaleLowerCase functions are implemented to work generically on any value type. Therefore you can invoke these functions even on non-String objects. Doing so will imply automatic conversion to a string value prior to changing the case of each character in the resulting string value. For example, you can apply toLowerCase directly on a date like this:

var lower = String.prototype.toLowerCase.apply(new Date());

and which is effectively equivalent to:

var lower = new Date().toString().toLowerCase();

The second form is generally preferred for its simplicity and readability, but the first has the benefit that it can work with a null value as well while the second requires a string. The result of applying toLowerCase or toLocaleLowerCase on null is null (and not an error condition). The first form may therefore come handy in some generic-handling code.

share|improve this answer
Interesting details :) Thanks! – jjmontes Oct 18 '11 at 16:57
1  
nice answer!!!! – Govind KamalaPrakash Malviya Jun 22 '12 at 12:40
+1, this answer deserves way more votes up than the accepted answer that explains nothing at all, I mean it – Frederik.L May 24 at 12:31

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:

"Foo".toLowerCase();
document.getElementById('myField').value.toLowerCase();
share|improve this answer

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.

share|improve this answer
Accept-Language and navigator.language are two completely separate settings. Accept-Language reflects the user's chosen preferences for what languages they want to receive in web pages (and this setting is unfortuately inaccessible to JS). navigator.language merely reflects which localisation of the web browser was installed, and should generally not be used for anything. Both of these values are unrelated to the system locale, which is the bit that decides what toLocaleLowerCase() will do; that's an OS-level setting out of scope of the browser's prefs. – bobince Sep 29 '10 at 22:15
I thought Accept-Language and navigator.language should be somehow related. You can configure the default language in order via browsers' settings screens, but so you can't configure what navigator.language should respond. I think there should be another form of the function toLowerCase() which gets a locale parameter. – sanilunlu Mar 21 '11 at 13:33
Yeah, there should really. Unfortunately locale-related features in JavaScript are weak, poorly-specified and generally unreliable. – bobince Mar 21 '11 at 19:40

example

<script type="text/javascript">
var yourstring = 'Your Name'
var lowercase = yourstring.toLowerCase();
document.write('original string:<b> ' + yourstring + '</b><br>');
document.write('converted sting <b>' + lowercase + '</b>');
</script>

try it on

http://htmledit.squarefree.com/
share|improve this answer

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.

 onChange: function(file, extension)
    {
      alert("extension.toLowerCase()=>" + extension.toLowerCase() + "<=");

Which produced the error "extension.toLowerCase is not a function" So I tried this piece of code, which revealed the problem!

alert("(typeof extension)=>" + (typeof extension) + "<=");;

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!:

var extension = String(extension);

After the cast, the extension.toLowerCase() function worked fine.

share|improve this answer

I payed attention that lot's are looking for strtolower() function in JavaScript. They are expecting the same function name as in other languages, that's why this post is here.

I would recommend using native Javascript function

"SomE StriNg".toLowerCase() method is simplier and faster

Here's the function that behaves exactly the same as PHP one (for those who are porting PHP code into js)

function strtolower (str) {
    return (str + '').toLowerCase();
}
share|improve this answer
What's the + '' for? – UpTheCreek Mar 22 at 9:44
@UpTheCreek: very good question! This is typical f*cking 'ninja trick' javascript is hated for. This completely unreadable statement converts everything to string. The code in my answer is short, but it's recommended to write so if a newcomer is gonna read it after you and ask questions – Dan Apr 3 at 17:56
str.toString() does similar but not equivalent job. Therefore + '' is preferable if you want your code to 'just work'! – Dan Apr 3 at 17:59
offtopic, that's how i was playing with + '' in console: NaN + '' "NaN" 1+'' "1" undefined + '' "undefined" null + '' "null" null.toString() TypeError: Cannot call method 'toString' of null x + '' ReferenceError: x is not defined f = function(){} function (){} f+'' "function (){}" – Dan Apr 3 at 18:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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