LCase Procedure

Converts a string sStr to a lower case string.

Syntax

[ s = ] LCase ( sStr )

The LCase procedure syntax has the following parts:

Name

Type

Description

s

BString

A converted string

sStr

Val BString

String to convert

Comments

This function converts alphabetical characters only. Other characters are not changed.

Example

Print LCase("Ab12Cd")

! This will print "ab12cd"

See Also

Format, UCase