E r g e b n i s / R e s u l t
Returns the length of a given string.
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 the length of the string supplied.
S y n t a x
Code:
c = call ('LENGTH' , str) P a r a m e t e r
str -The string whose length to return.
R e t u r n s
The length of the string str.
B e i s p i e l / E x a m p l e
Code:
attach 'tools'
put call ('length' , 'BLABLA') ! return 6
detach 'tools'