Logo

Programming-Idioms

History of Idiom 169 > diff from v98 to v99

Edit summary for version 99 by programming-idioms.org:
[Kotlin] +DemoURL

Version 98

2022-01-22, 23:22:20

Version 99

2022-02-01, 22:56:31

Idiom #169 String length

Assign to integer n the number of characters of 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 integer n the number of characters of 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
val n = s.length
Code
val n = s.length
Demo URL
https://pl.kotl.in/-lOWQHemI