Logo

Programming-Idioms

History of Idiom 169 > diff from v79 to v80

Edit summary for version 80 by OC:
New Obj-C implementation by user [OC]

Version 79

2020-07-05, 20:30:11

Version 80

2020-10-10, 21:21:22

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.

Variables
n,s
Variables
n,s
Extra Keywords
size characters chars number runes
Extra Keywords
size characters chars number runes
Imports
@import Foundation;
Code
NSUInteger n=s.length;