Skip to content

Instantly share code, notes, and snippets.

@kotaroito
Created January 12, 2012 16:21
Show Gist options
  • Save kotaroito/1601407 to your computer and use it in GitHub Desktop.
Save kotaroito/1601407 to your computer and use it in GitHub Desktop.
How to count length of multi-byte character.
use strict;
use warnings;
use Encode qw(decode);
my $str = 'あいうえお';
warn length($str); # 10
warn length(decode("euc-jp", $str)); # 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment