E r g e b n i s / R e s u l t
Wandelt einen String in Kleinbuchstaben um.
Converts a string to lowercase letters
B e s c h r e i b u n g / D e s c r i p t i o n
This function returns a string where all uppercase letters have been
converted to lowercase.
This function compliments the Open Access UCASE Programmer function.
S y n t a x
Code:
answer = call ('LCASE' , string) P a r a m e t e r
string - is any string or constant
R e t u r n s
Returns a string variable of the same length as the string passed to i
B e i s p i e l / E x a m p l e
Code:
attach 'STRING'
put call ('LCASE' , 'Test String') ! prints test string
a = 'AA Aerospace'
b = call ('LCASE' , a) ! b contains 'aa aerospace'
detach 'STRING' Q u e r v e r w e i s / R e f e r e n c e
UCASE
PROPER