Search notes:

Perl function: length

use warnings;
use strict;

print length('ä') . "\n";
# 2

use utf8;

print length('ä') . "\n";
# 1
Github repository about-perl, path: /functions/length.pl

See also

Perl functions

Index