我有一个Perl哈希,其键以数字开头.
如果我使用,
foreach my $key (sort keys %hash) { print $hash{$key} . "\n"; }
列表可能会出来,
0 0001 1000 203 23
代替
0 0001 23 203 1000