About 21,900,000 results
Open links in new tab
  1. operators - What does =~ do in Perl? - Stack Overflow

    51 I guess the tag is a variable, and it is checking for 9eaf - but does this exist in Perl? What is the "=~" sign doing here and what are the "/" characters before and after 9eaf doing?

  2. What is the meaning of @_ in Perl? - Stack Overflow

    Dec 30, 2010 · 128 perldoc perlvar is the first place to check for any special-named Perl variable info. Quoting: @_: Within a subroutine the array @_ contains the parameters passed to that subroutine. …

  3. What's the use of <> in Perl? - Stack Overflow

    Sep 5, 2012 · What's the use of <> in Perl. How to use it ? If we simply write <>; and while (<>) what is that the program doing in both cases?

  4. operators - What is the difference between "||" and "or" in Perl ...

    Nov 10, 2019 · 53 From Perl documentation: OR List operators On the right side of a list operator, it has very low precedence, such that it controls all comma-separated expressions found there.

  5. How does double arrow (=>) operator work in Perl? - Stack Overflow

    Feb 2, 2016 · The => operator in perl is basically the same as comma. The only difference is that if there's an unquoted word on the left, it's treated like a quoted word. So you could have written Martin …

  6. What does the -> arrow do in Perl? - Stack Overflow

    7 Perl arrow operator has one other use: Class−>method invokes subroutine method in package Class though it's completely different than your code sample. Only including it for completeness for the …

  7. terminology - What does " ~~ " mean in Perl? - Stack Overflow

    5 It is the smartmatch operator. In general, when you want information about operators in Perl, see perldoc perlop

  8. How can I parse command-line arguments in a Perl program?

    I'm working on a Perl script. How can I parse command line parameters given to it? Example: script.pl "string1" "string2"

  9. [办公编程]Python不算啥,我已经有更好的选择——Perl (一文快速入 …

    Nov 23, 2020 · 2.1 Perl变量 要赋值,就要先了解Perl的变量,当我了解这部分的时候挺惊讶于变量的设计思路,Perl所有数字的内部变量都是双精度浮点数(double-precision floating-point)有过其他编 …

  10. 如何从零开始学习 Perl? - 知乎

    注:笔者主要使用Perl做软件测试方面开发 按照笔者自己的经历,从对Perl一无所知到可以上手干活,可以从小骆驼书—— Learning Perl (豆瓣) 开始。快速浏览加实践下书上代码,两天就可以读个大概。 …