Equinox Online Help - Language Reference - A to Z

Home

Lowercase

Applies to
SyntaxLowercase(StringExpression)
Action[Function] Converts any uppercase characters in a string into lowercase.
ScopeUsable anywhere.
Notes

This function returns a copy of StringExpression, with any uppercase characters changed to lowercase.

CategoryConversions
See Also Asc, Card, HexNum, Ord, Str, StrCase, StrDate, StrTime, Uppercase
Example

This example normalises the case of the forename field, so that it starts with a capital letter and all other letters are lowercase.

forename = Uppercase(forename[1]) & Lowercase(Mid(forename,2))