Logo

Programming-Idioms

History of Idiom 169 > diff from v65 to v66

Edit summary for version 66 by miguel:
New Kotlin implementation by user [miguel]

Version 65

2019-09-26, 22:12:27

Version 66

2019-09-26, 22:13:33

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
val n = s.length