<-- Previous || Up || Next -->

To Lower Function
Character Types Class

Public Function ToLower( _
    ByVal vValue As Variant _
    ) As Variant

"To Lower Case"
Convert a character or a string to its lower-case equivalent; non-alphabetic characters remain unchanged.

Examples:
    ToLower("ABC abc 123 !@#") = "abc abc 123 !@#"
    ToLower(Asc("A")) = ToLower(65) = Asc("a") = 97
    ToLower(Asc("a")) = ToLower(97) = Asc("a") = 97
See also:
    ToUpper Function
    SwapUpperAndLowerCase Function
    LCase Function (Visual Basic)
Note: Function only works for characters in the ANSI Windows character set because it uses the built-in Visual Basic LCase$() function.

vValue: The character or string which is to be converted to "lower-case." Note: Special argument fix-up code.

If vValue is numeric (and not a numeric string), then function returns the ASCII value of the lower-case equivalent of the character with ASCII value vValue.

If vValue is a string, then function uses the Visual Basic LCase() function to convert it to lower-case.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.