strlen

(strlen [string1] ...)

The strlen function returns the total number of characters of all strings given as arguments to the function.

Examples

: (strlen "123")

3

: (strlen "123" "456" "789")

9

: (strlen)

0

: (strlen "")

0

Related Functions

getstring