String.Upper

Top  Previous  Next

 

Syntax

function String.Upper(StrValue: string): string

 

Alternative Names

ibec_AnsiUpperCase

 

Description

Returns the upper case version of StrValue.

 

See also

String.Lower

 

Example

execute udsblock

as

begin

  valueout = String.Upper('This is an UpperCase string');

 

  /* displays 'THIS IS AN UPPERCASE STRING' */

  GUI.ShowMessage(valueout);

end