Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

length

Returns the number of characters in a string.

Returns the character count (not byte count) for Unicode correctness. length(undef) returns undef, matching perl5 behavior.

Synopsis

$len = length($string);
$len = length("café");   # 4 (characters, not bytes)

See Also

substr