Visual Basic 2005 in a Nutshell (In a Nutshell (OReilly))

LCase Function

Class

Microsoft.VisualBasic.Strings

Syntax

Dim result As type = LCase(value)

type (required)

One of the following data types: Char or String

value (required; expression of type type)

A valid string expression or a character

Description

The LCase function converts a string or character to lowercase.

Usage at a Glance

  • LCase only affects uppercase letters; all other characters in value are unaffected.

  • LCase returns Nothing if value contains Nothing.

  • LCase returns the same data type as value.

See Also

UCase Function

Категории