String.Lower

Top  Previous  Next

 

Syntax

function String.Lower(StrValue: string): string

 

Alternative Names

ibec_AnsiLowerCase

 

Description

Returns the lower case version of StrValue.

 

See also

String.Upper

 

Example

execute udsblock

as

begin

  valueout = String.Lower('This is a LOWERCASE string');

 

  /* displays 'this is a lowercase string' */

  GUI.ShowMessage(valueout);

end