Converts a string to lower case. Only upper-case characters are converted. Any lower-case characters or non-letter characters are returned unchanged.
LCase (string)
String - (Input, expression, Required)
Specifies the string to convert. If a numeric value is passed, it is first converted into a string. If Null is passed, the result is Null. If a non-string is passed, the result is Error.
The specified string in lower-case form.
LCase (“abc”) |
Returns “abc” |
LCase (“ABC”) |
Returns “abc” |
LCase (“AN AS/400”) |
Returns “an as/400” |
LCase (123) |
Returns “123” |
LCase (Null) |
Returns Null |
LCase (Error) |
Returns Error |
Functions are specifically for use in the Macro Editor. Refer to Microsoft's official VB and JScript documentation for scripting equivalents.
Functions | Asc function | Chr function | CSet function | Format function | InStr function | LCase function | Left function | Len function | LSet function | LTrim function | Mid function | Replace function | Right function | RSet function | RTrim function | Space function | String function | TCase function | Trim function | UBound function | UCase function
© 2004-2021 looksoftware. All rights reserved.