t3x.org / sketchy / library / s-length.html
SketchyLISP
Reference
  Copyright (C) 2007
Nils M Holm

string-length

Conformance: R5RS Scheme

Purpose: Compute the length of a string.

Arguments:
X - string

Model:

(define (string-length x)
  (length (string->list x)))

Implementation:

; This function is a primitive function.

Example:

(string-length "Hello") 
=> 5

See also:
string, string-append, string-ref, append.