Perl 钻石运算符内部的奇怪事情

发布于 2024-12-11 19:04:06 字数 206 浏览 0 评论 0原文

请任何人都可以帮我解决这个问题:

perl -e 'print for <{a,b,c}{1,2,3}>'

我只是不明白它是如何工作的。它有效! 按产出生产

a1a2a3b1b2b3c1c2c3

有谁知道钻石运营商内部发生了什么?

Please, can anyone help me with this:

perl -e 'print for <{a,b,c}{1,2,3}>'

I just don't understand how it works. And it works! Producing

a1a2a3b1b2b3c1c2c3

on output.

Does anyone know what is happening inside diamond operator?

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

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

发布评论

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

评论(1

空名 2024-12-18 19:04:06

这是表示 globbing 的另一种方式。基本上,花括号告诉 glob 运算符将每个逗号分隔的元素放入其中并组合所有可能性。

更清晰的方法是用逗号分隔各个输出:

$ perl -e 'print join ",", <{a,b,c}{1,2,3}>;'
a1,a2,a3,b1,b2,b3,c1,c2,c3

来自 perldoc -f glob

如果非空大括号是全局中使用的唯一通配符,
没有匹配的文件名,但可能会返回许多字符串。
例如,这会产生九个字符串,每个字符串对应一个
水果和颜色:

@many = glob "{苹果,番茄,樱桃}={绿色,黄色,红色}";

It's another way to represent globbing. Basically the curlies tell the glob operator to take each comma-separated element inside and combine across all possibilities.

A clearer way to see this is to comma-separate the individual outputs:

$ perl -e 'print join ",", <{a,b,c}{1,2,3}>;'
a1,a2,a3,b1,b2,b3,c1,c2,c3

From perldoc -f glob :

If non-empty braces are the only wildcard characters used in the glob,
no filenames are matched, but potentially many strings are returned.
For example, this produces nine strings, one for each pairing of
fruits and colors:

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