length()

This function returns the length of any given text.


Bash
length(text) #Output: Number


Examples

Parser expression

Description

Bash
 length("Star Wars") 

This example returns:

9

Bash
 length("JWT") 

This example returns:

3

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

text

text

Any given text.

Output

This function returns a number


📚 Use cases and examples