String.Lower |
Top Previous Next |
Syntax function String.Lower(StrValue: string): string
Alternative Names
Description Returns the lower case version of StrValue.
See also
Example execute udsblock as begin valueout = String.Lower('This is a LOWERCASE string');
/* displays 'this is a lowercase string' */ GUI.ShowMessage(valueout); end |