E r g e b n i s / R e s u l t
Convert the text string to ALL Upper Case
B e s c h r e i b u n g / D e s c r i p t i o n
This language call contains 3 string functions which can be used
within Database, Spreadsheet, or OAIII Programmer/Compiler.
These functions can be used to change the format of a text string.
Maximum characters that can be input is 128.
S y n t a x
Code:
capstr = call ('UPPER' , str) P a r a m e t e r
str - String where the characters get converter to upper case.
R e t u r n s
A copy of the string str with all characters to be converter to upper case.
B e i s p i e l / E x a m p l e
Code:
attach 'CAPS'
put call ('UPPER' , 'abcde') ! returns ABCDE
detach 'CAPS'