Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起,如果这是一个新手问题。我似乎找不到这个问题的答案:
在 Padre 中,我如何查看/检查 Perl“特殊变量”的值(例如 $_ 或 $/?)
似乎只有在编辑器中突出显示该变量时,“查看”按钮才会列出变量的值。但是 Perl 的特殊变量不是显式程序代码的一部分。
TIA - 海伦
您是否尝试过在与您的代码相关的部分中突出显示它们?问题是特殊变量会根据上下文一直在变化,因此很难理解它们的含义。
例子:
sub Something { $_; <<< highlight this @_; <<<< or this #do something $value = shift; }