CellSpace/Manual (draft)
by CellWorks
Home
  
Table of Contents
  
Glossary
Len
The Len function returns the number of characters in a text string.
Usage:
	= Len(<text>);
Examples:
	/* returns 5 */
	= Len("Hello");
	/* returns 0 */
	= Len("");
	/* returns 2 */
	= Len(2 * 5);