String.Upper |
Top Previous Next |
Syntax function String.Upper(StrValue: string): string
Alternative Names
Description Returns the upper case version of StrValue.
See also
Example execute udsblock as begin valueout = String.Upper('This is an UpperCase string');
/* displays 'THIS IS AN UPPERCASE STRING' */ GUI.ShowMessage(valueout); end |