gpt4 book ai didi

perl - 如何在 Perl 中打印变量

转载 作者:行者123 更新时间:2023-12-03 09:46:40 26 4
gpt4 key购买 nike

我有一些看起来像的代码

my ($ids,$nIds);
while (<myFile>){
chomp;
$ids.= $_ . " ";
$nIds++;
}

这应该连接我的 myFile 中的每一行, 和 nIds应该是我的行数。如何打印我的 $ids$nIds ?

我试过了 print $ids ,但 Perl 提示。
my ($ids, $nIds)

是一个列表,对吧?有两个元素?

最佳答案

print "Number of lines: $nids\n";
print "Content: $ids\n";

Perl 是如何提示的? print $ids应该可以工作,尽管您可能希望在末尾有一个换行符,或者明确地使用 print如上或通过使用 say 隐含或 -l/ $\ .

如果你想在一个字符串中插入一个变量,并在它后面紧跟着一些看起来像变量的一部分但不是的东西,请将变量名包含在 {} 中。 :
print "foo${ids}bar";

关于perl - 如何在 Perl 中打印变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6181381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com