gpt4 book ai didi

string - 如何在 Perl 中连接变量

转载 作者:行者123 更新时间:2023-12-02 18:12:03 25 4
gpt4 key购买 nike

在 Perl 中连接变量有不同的方法吗?

我不小心写了下面这行代码:

print "$linenumber is: \n" . $linenumber;

这导致输出如下:

22 is:
22

我期待的是:

$linenumber is:
22

然后我就想知道。它必须将双引号中的 $linenumber 解释为对变量的引用(多酷!)。

使用此方法有哪些注意事项以及它是如何工作的?

最佳答案

使用双引号时会发生变量插值。因此,特殊字符需要转义。在这种情况下,您需要转义 $:

print "\$linenumber is: \n" . $linenumber;

可以重写为:

print "\$linenumber is: \n$linenumber";

为避免字符串插值,请使用单引号:

print '$linenumber is: ' . "\n$linenumber";  # No need to escape `$`

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

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