Logo

Programming-Idioms

History of Idiom 169 > diff from v7 to v8

Edit summary for version 8 by Edward E.:
New Dart implementation by user [Edward E.]

Version 7

2018-01-11, 18:00:11

Version 8

2018-01-14, 07:30:52

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.

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.

Extra Keywords
size
Extra Keywords
size
Code
print(s.length);