Logo

Programming-Idioms

  • Ruby
  • Php

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 = mb_strlen($s, 'UTF-8');

Returns the number of characters in the UTF-8 string s
n = s.size
n = s.length
n : Integer := s'Length;

New implementation...