Author Topic: Microsoft Access Function Library: Lcase()  (Read 3688 times)

bbasujon

  • Administrator
  • VIP Member
  • *****
  • Posts: 1826
  • I want to show my performance at any where
    • View Profile
    • Higher Education
Microsoft Access Function Library: Lcase()
« on: August 15, 2012, 05:14:31 PM »
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