Logo

Programming-Idioms

History of Idiom 169 > diff from v51 to v52

Edit summary for version 52 by mattdaly:
New Csharp implementation by user [mattdaly]

Version 51

2018-10-01, 20:54:38

Version 52

2019-01-06, 03:32:01

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
int n = s.Length;
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.string.length?view=netframework-4.7.2