User Tools

Site Tools


syntax:functions:len

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Last revisionBoth sides next revision
syntax:functions:len [2015/04/03 17:55] elenapsyntax:functions:len [2021/08/02 02:59] craigt
Line 1: Line 1:
-===== Len(text) =====+====== Len(text) =====
 +Category:  Text function
  
-Calculates the number of characters (length) of a //text// value. +\\  
 +=====Description===== 
 +This function returns the number of characters (length) in the //text// value.
  
-^  Example  ^  Result  ^ +\\  
-|  len('Telecommunications' |  18  |+=====Use cases==== 
 +This function can be used to determine if there are unexpected non-printing characters in a text string.
  
 +\\ 
 +=====Arguments=====
 +^Argument^Type^Description^
 +|text|Text|The text string evaluated to determine the number of characters it contains.|
  
-Example using a field name:+**Return value type:** Number
  
- Example   Revenue   Result    +\\  
- len([Revenue])  |  100000  |  6  +=====Remarks===== 
 +The number of characters returned //includes// unseen, non-printing characters (space, line feed, tab, etc.) 
 + 
 +//text// is implicitly converted to text values if required 
 + 
 +\\  
 +=====Examples===== 
 + 
 +  len('Telecommunications') = 18 
 +  len('Computer sciences') = 17  //Includes the space 
 +  len(' Genetics ') = 10  //Includes leading and trailing spaces 
 +  len('Psychology' & char(9)) = 11  //char(9) = tab, included in the length 
 +  len(1000000) = 7  //Implicit conversion of a numeric value to text 
 +  len('') = 0  //An empty string has a length of 0 
 +  len([MyClass]) = 12  //Using a field name; [MyClass] = 'Astrophysics' 
 + 
 +\\  
 +===== See also ===== 
 +  * [[syntax:functions:ifempty|IfEmpty(value, new_value)]] 
 +  * [[syntax:functions:isempty|IsEmpty(value)]]
  
-**See also** 
-  * [[syntax:functions:isempty]] 
-  * [[syntax:functions:ifempty]] 
syntax/functions/len.txt · Last modified: 2021/08/14 22:16 by craigt

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki