About 24,500,000 results
Open links in new tab
  1. $0 - Perldoc Browser

    Modifying the $0 is more useful as a way of indicating the current program state than it is for hiding the program you're running. Note that there are platform-specific limitations on the …

  2. Should I use $_ [0] or copy the argument list in Perl?

    Nov 19, 2009 · I only use $_[0] in two situations: class accessors (which meet your "couple of statements" rule) and for the rare case where I want to modify arguments in place and need to …

  3. Perl - Special Variables - Online Tutorials Library

    There are some variables which have a predefined and special meaning in Perl. They are the variables that use punctuation characters after the usual variable indicator ($, @, or %), such …

  4. Perl 101 - Special Variables

    It is the environment that will be given to any subshell created by Perl. This is significant in taint mode, as %ENV will have entries that can alter the shell's behavior.

  5. Special variables in Perl - GeeksforGeeks

    Jul 12, 2025 · Special Variables in Perl are those which are already defined to carry out a specific function when required. The differentiating factor between a special Variable in Perl and a …

  6. syntax - What are the differences between $, @, % in a Perl

    Where you are likely getting confused is that to access an individual element of the argument list, you would write $_[0], which accesses the first element. Here the sigil changes to $ to denote …

  7. perlvar - Perl predefined variables - Perldoc Browser

    For example, setting $0 to "foobar" may result in "perl: foobar (perl)" (whether both the "perl: " prefix and the " (perl)" suffix are shown depends on your exact BSD variant and version).

  8. Perl Operators

    Perl provides numeric operators to help you operate on numbers including arithmetic, Boolean and bitwise operations. Let’s examine the different kinds of operators in more detail.

  9. The Perl Programming Language - www.perl.org

    Perl is a highly capable, feature-rich programming language with over 37 years of development. Download and Get Started. With free online books, over 25,000 extension modules, and a …

  10. Perl Documentation - Perldoc Browser

    Perl officially stands for Practical Extraction and Report Language, except when it doesn't. Perl was originally a language optimized for scanning arbitrary text files, extracting information from …