4

考虑示例代码:

$VAR1 = {
      'en' => {
              'new' => {
                       'style' => 'defaultCaption',
                       'tts:fontStyle' => 'bold',
                       'id' => 'new'
                     },
              'defaultCaption' => {
                                  'tts:textAlign' => 'left',
                                  'tts:fontWeight' => 'normal',
                                  'tts:color' => 'white',

                                }
            },
      'es' => {
              'defaultSpeaker' => {
                                  'tts:textAlign' => 'left',
                                  'tts:fontWeight' => 'normal',

                                },
              'new' => {
                       'style' => 'defaultCaption',
                       'tts:fontStyle' => 'bold',
                       'id' => 'new'
                     },
              'defaultCaption' => {
                                  'tts:textAlign' => 'left',
                                  'tts:fontWeight' => 'normal',

                                }
            }
    };

我返回它作为参考,返回 \%hash

我如何取消引用这个?

4

2 回答 2

8

%$hash. 有关详细信息,请参阅http://perldoc.perl.org/perlreftut.html

如果您的哈希是由函数调用返回的,您可以执行以下任一操作:

my $hash_ref = function_call();
for my $key (keys %$hashref) { ...  # etc: use %$hashref to dereference

或者:

my %hash = %{ function_call() };   # dereference immediately

要访问散列中的值,您可以使用->运算符。

$hash->{en};  # returns hashref { new => { ... }. defaultCaption => { ... } }
$hash->{en}->{new};     # returns hashref { style => '...', ... }
$hash->{en}{new};       # shorthand for above
%{ $hash->{en}{new} };  # dereference
$hash->{en}{new}{style};  # returns 'defaultCaption' as string
于 2013-05-15T07:11:56.650 回答
3

试试下面的方法,可能对你有帮助:

my %hash = %{ $VAR1};
        foreach my $level1 ( keys %hash) {
            my %hoh = %{$hash{$level1}};
            print"$level1\n";
            foreach my $level2 (keys %hoh ) {
               my %hohoh = %{$hoh{$level2}};
               print"$level2\n";
               foreach my $level3 (keys %hohoh ) {
                        print"$level3, $hohoh{$level3}\n";
                }
             }
        }

此外,如果你想访问特定的密钥,你可以这样做

my $test = $VAR1->{es}->{new}->{id};

于 2013-05-15T07:41:56.697 回答