Logo

Programming-Idioms

History of Idiom 169 > diff from v58 to v59

Edit summary for version 59 by el_memorioso:
New Clojure implementation by user [el_memorioso]

Version 58

2019-09-26, 16:54:32

Version 59

2019-09-26, 17:25:24

Idiom #169 String length

Assign to integer n the number of characters of string s.

This can be different from the number of bytes of s.

Illustration

Idiom #169 String length

Assign to integer n the number of characters of string s.

This can be different from the number of bytes of s.

Illustration
Extra Keywords
size characters chars number runes
Extra Keywords
size characters chars number runes
Code
(def n (count s))