xpfStringToUppercase

FUNCTION xpfStringToUppercase (sourceString    : STRING)
                               uppercaseString : STRING;
                

The function xpfStringToUppercase converts all characters within the given sourceString to uppercase characters and returns the new string as uppercaseString.

Arguments


TypeNameComment
STRINGsourceStringThe source string to be converted to uppercase

Return Value


 

TypeNameComment
STRINGuppercaseStringThe given string in uppercase format

Options


 

Example


uppercaseString : STRING;
....
uppercaseString := xpfStringToUppercase('mixed CasE string'); 

 

See also

Filter by label

There are no items with the selected labels at this time.

Â