Microsoft Access Function Library: Lcase()

Started by bbasujon, August 15, 2012, 05:14:31 PM

Previous topic - Next topic

bbasujon

Function: LCase()

Purpose: The LCase() function converts all of the uppercase letters in a string to their lowercase equivalents. Characters that are already uppercase or are non-alphabetic are left intact.

Usage: Lcase(string)

Returns: String with all uppercase letters converted to lowercase.

Example:

Dim MyString() As String = {"Testing, Testing, 123"}
Dim ResultString As String = LCase(MyString)

In this example, ResultString would contain "testing, testing, 123"
Acquire the knowledge and share the knowledge so that knowing,learning then sharing - all are the collection