8 lines
159 B
Text
8 lines
159 B
Text
|
|
; Character length
|
||
|
|
(print (string-length "Hello, wørld!"))
|
||
|
|
; ==> 13
|
||
|
|
|
||
|
|
; Byte (utf-8 encoded) length
|
||
|
|
(print (length (string->bytes "Hello, wørld!")))
|
||
|
|
; ==> 14
|