Files
calc/help/strlen
2017-05-21 15:38:25 -07:00

27 lines
322 B
Plaintext

NAME
strlen - number of characters in a string
SYNOPSIS
strlen(x)
TYPES
x string
return integer
DESCRIPTION
strlen(x) returns the number of characters in x
EXAMPLE
> print strlen(""), strlen("abc"), strlen("a b\tc\\d")
0 3 7
LIMITS
none
LIBRARY
none
SEE ALSO
XXX - fill in