Perl
  Home arrow Perl arrow Page 2 - Understanding Perl's Special Variables
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PERL

Understanding Perl's Special Variables
By: icarus, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 34
    2003-07-10


    Table of Contents:
  • Understanding Perl's Special Variables
  • In Default
  • Input...
  • ...And Output
  • Getting Into An Argument
  • The Right Path
  • To Err Is Human
  • A Question Of Ownership
  • Rank And File
  • Calling For A Translator
  • End Zone

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Understanding Perl's Special Variables - In Default
    ( Page 2 of 11 )

    One of the more important special variables you'll encounter in your Perl forays is $_, which is used by many Perl functions and constructs as the so-called "default variable" when none other exists. In order to demonstrate, consider the following example:


    #!/usr/bin/perl

    # set array
    %stuff = ("phone", "Nokia", "car", "BMW", "gun", "Smith & Wesson");

    # iterate over array
    foreach $s (keys(%stuff))
    {
    print "$s\n";
    }

    Here's the output:


    car
    gun
    phone

    In this case, the foreach() loop iterates over the hash, assigning the key
    at each iteration to the $s instance variable; this variable is then
    printed with the print() function. If, however, you omit the instance
    variable in the foreach() loop, Perl will assume that you want it to use
    the default $_ variable as the instance variable.

    The following example, which is equivalent to the one above, demonstrates:


    #!/usr/bin/perl

    # set array
    %stuff = ("phone", "Nokia", "car", "BMW", "gun", "Smith & Wesson");

    # iterate over array
    foreach (keys(%stuff))
    {
    print "$_\n";
    }

    Here, every time the loop iterates over the hash, since no instance variable is specified, Perl will assign the key to the default variable $_. This variable can then be printed via a call to print().

    The $_ variable also serves as the default for both chop() and print() functions. Going back to the example above, you could also write it this way,


    #!/usr/bin/perl

    # set array
    %stuff = ("phone", "Nokia", "car", "BMW", "gun", "Smith & Wesson");

    # iterate over array
    foreach (keys(%stuff))
    {
    print;
    }

    which would return


    cargunphone

    The $_ variable is also the default variable used by file and input handles. For example, consider the following simple Perl script, which prints back whatever input you give it:


    #!/usr/bin/perl

    # read from standard input
    # print it back
    while (<STDIN>)
    {
    print $_;
    }

    In this case, every line read by the standard input is assigned to the $_ variable, which is then printed back out with print().

    Knowing what you now know about print() and $_, it's clear that you could also write the above as


    #!/usr/bin/perl

    # read from standard input
    # print it back
    while (<STDIN>)
    {
    print;
    }

    The $_ default variable is used in a number of different places: it is the default variable used for pattern-matching and substitution operations; the default variable used by functions like print(), chop(), grep(), ord(), etc; the default instance variable in foreach() loops; and the default used for various file tests.



     
     
    >>> More Perl Articles          >>> More By icarus, (c) Melonfire
     

       

    PERL ARTICLES

    - More Perl Bits
    - Perl, Bit by Bit
    - Basic Charting with Perl
    - Using Getopt::Long: More Command Line Option...
    - Command Line Options in Perl: Using Getopt::...
    - Web Access with LWP
    - More Templating Tools for Perl
    - Site Layout with Perl Templating Tools
    - Build a Perl RSS Aggregator with Templating ...
    - Looping, Security, and Templating Tools
    - Perl: Bon Voyage Lists and Hashes
    - Templating Tools
    - Perl: Number Crunching
    - Perl Debuggers in Detail
    - Debugging Perl





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 1 Hosted by Hostway
    Stay green...Green IT