Logo

Programming-Idioms

  • Perl
  • C#
  • Rust

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.

let n = s.chars().count();

This is kind of roundabout because the default len method gives bytes, not characters.
my $n = length( $s );

This may break under the 'use bytes' pragma, which is discouraged in modern perls.
int n = s.Length;
n : Integer := s'Length;

New implementation...