Public Function ToLower( _
ByVal vValue As Variant _
) As Variant ToLower("ABC abc 123 !@#") = "abc abc 123 !@#"
ToLower(Asc("A")) = ToLower(65) = Asc("a") = 97
ToLower(Asc("a")) = ToLower(97) = Asc("a") = 97See 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.