Logo

Programming-Idioms

  • Fortran
  • Go
  • Perl
  • Erlang

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.

n = len(s)
import "unicode/utf8"
n := utf8.RuneCountInString(s)

This assumes that s is encoded in UTF-8 (which is idiomatic in Go).
my $n = length( $s );

This may break under the 'use bytes' pragma, which is discouraged in modern perls.
N = string:length(S)

length(String::unicode:chardata()) -> integer() >= 0

Returns the number of grapheme clusters in String.
n : Integer := s'Length;

New implementation...