Logo

Programming-Idioms

History of Idiom 169 > diff from v53 to v54

Edit summary for version 54 by Debaran:
New Scala implementation by user [Debaran]

Version 53

2019-01-06, 10:12:49

Version 54

2019-02-01, 06:33:54

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()