如何控制 Perl 的 Data::Dumper 中的变量名称?

发布于 2024-07-21 06:14:56 字数 323 浏览 6 评论 0原文

我有这个简单的 Perl 脚本:

#! /usr/bin/perl -w

use strict;
use Data::Dumper;

my %foo = ( 'abc' => 1 );

print Dumper(\%foo);

它输出:

$VAR1 = {
          'abc' => 1
        };

我如何让它输出这个?

%foo = (
         'abc' => 1
       );

I've got this simple Perl script:

#! /usr/bin/perl -w

use strict;
use Data::Dumper;

my %foo = ( 'abc' => 1 );

print Dumper(\%foo);

It outputs:

$VAR1 = {
          'abc' => 1
        };

How do I make it output this instead?

%foo = (
         'abc' => 1
       );

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

帝王念 2024-07-28 06:14:56
print Data::Dumper->Dump( [ \%foo ], [ qw(*foo) ] );

扩展语法需要两个数组引用:一个要转储的标量,一个要使用的名称。 如果名称以 * 为前缀,并且相应的标量是 arrayref 或 hashref,则会生成数组或哈希赋值。

print Data::Dumper->Dump( [ \%foo ], [ qw(*foo) ] );

The extended syntax takes two arrayrefs: one of scalars to dump, and one of names to use. If the name is prefixed by * and the corresponding scalar is an arrayref or hashref, an array or hash assignment is produced.

软糖 2024-07-28 06:14:56
use Data::Dumper;

$Data::Dumper::Terse = 1;

print '%foo = '.(Dumper \%foo);
use Data::Dumper;

$Data::Dumper::Terse = 1;

print '%foo = '.(Dumper \%foo);
昇り龍 2024-07-28 06:14:56

除了ysth的答案之外,您还可以使用Ovid的 Data::Dumper::Names 模块。

In addition to ysth's answer, you can use Ovid's Data::Dumper::Names module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文