Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns a string where all alphabetic characters have been converted to lowercase.
Syntax
strVariable.toLowerCase( )
"String Literal".toLowerCase( )
Remarks
The toLowerCase method has no effect on nonalphabetic characters.
The following example demonstrates the effects of the toLowerCase method:
var strVariable = "This is a STRING object";
strVariable = strVariable.toLowerCase( );
The value of strVariable after the last statement is:
this is a string object
Requirements
Applies To: String Object (Windows Scripting - JScript)
See Also
toLocaleLowerCase Method (Windows Scripting - JScript)
toUpperCase Method (Windows Scripting - JScript)