Is there a way to create a UTF-8 alphabetical array using the Perl '..' operator?
For example, this one will not work:
$ cat t.pl
use Data::Dumper;
use encoding 'utf8';
print Dumper(''..'');
print Dumper('','','');
$ perl t.pl
$VAR1 = "\x{410}";
$VAR1 = "\x{410}";
$VAR2 = "\x{411}";
$VAR3 = "\x{412}";
$ echo $LANG
en_US.UTF-8
Any tips?
source
share