在哪里可以找到有关 Perl 特殊变量的信息?
Perl 有相当多的特殊变量,例如 @F
、$!
、%!
... 等。所有 Perl 的特殊变量都记录在哪里?
Perl has quite a few special variables such as @F
, $!
, %!
... etc. Where are all Perl's special variables documented?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Perl 使用的所有特殊变量都记录在 perldoc perlvar 中。您可以通过在命令行中输入
perldoc perlvar
来访问perl
附带的本文档版本。All special variables used by Perl are documented in perldoc perlvar. You can access the version of this documentation that came with your
perl
by enteringperldoc perlvar
on the command line.Perl 使用的所有特殊变量都记录在 perldoc perlvar 中。您可以通过运行以下命令在计算机上查看此文档。
特定特殊变量的文档也可以使用
perldoc -v
在命令行中访问:您可能需要转义/引用某些变量以避免插值:您的 shell:
或者
如果您使用的是
cmd.exe
。欲了解更多信息:
All special variables used by Perl are documented in perldoc perlvar. You can view this document on your computer by running
The documentation for a specific special variable can also be accessed at the command line using
perldoc -v
:You may need to escape/quote some variables to avoid interpolation by your shell:
or
if you are using
cmd.exe
.For more information: