Logo

Programming-Idioms

History of Idiom 169 > diff from v107 to v108

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

Version 107

2022-06-27, 07:04:34

Version 108

2022-06-27, 07:05:42

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;
Doc URL
https://api.dart.dev/stable/2.17.5/dart-core/String/length.html
Demo URL
https://dartpad.dev/?id=968bc32eaf2d9eaa0638c5a3463ea275
Demo URL
https://dartpad.dev/?id=968bc32eaf2d9eaa0638c5a3463ea275