Logo

Programming-Idioms

History of Idiom 169 > diff from v106 to v107

Edit summary for version 107 by programming-idioms.org:
[Dart] Added Demo URL

Version 106

2022-06-27, 07:01:50

Version 107

2022-06-27, 07:04:34

Idiom #169 String length

Assign to the integer n the number of characters of the string s.
Make sure that multibyte characters are properly handled.
n can be different from the number of bytes of s.

Idiom #169 String length

Assign to the integer n the number of characters of the string s.
Make sure that multibyte characters are properly handled.
n can be different from the number of bytes of s.

Variables
n,s
Variables
n,s
Extra Keywords
size characters chars number runes
Extra Keywords
size characters chars number runes
Code
int n = s.length;
Code
int n = s.length;
Demo URL
https://dartpad.dev/?id=968bc32eaf2d9eaa0638c5a3463ea275