E r g e b n i s / R e s u l t
Convert the text string to ALL Lower 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:
lwrstr = call ('LOWER' , str) P a r a m e t e r
str - String where the characters get converted to lowercase.
R e t u r n s
A copy of the string str with all characters in lowercase.
B e i s p i e l / E x a m p l e
Code:
attach 'CAPS'
put call ('LOWER' , 'ABCDE') ! returns abcde
detach 'CAPS'