RosettaCodeData/Task/String-length/Factor/string-length-1.factor

3 lines
129 B
Factor
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: string-byte-length ( string -- n ) [ code-point-length ] map-sum ;
: string-byte-length-2 ( string -- n ) utf8 encode length ;