String-Length

(string-length string) -> integer

Takes any string and returns an integer giving the number of characters in it.

Examples:

>>(string-length "Eric")
:: 4
>>(string-length "Eric ")
:: 5