Perl
  Home arrow Perl arrow Page 7 - Perl 101 (Part 3) - Looping The Loop
Click Here
Dev Shed Forums 
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Forums Sitemap 
IBM® developerWorks 
Sun Developer Network 
Dedicated Servers 
E-Commerce Hosting 
Linux Web Hosting 
Managed Hosting 
Small Business Hosting 
Actuate Whitepapers 
VeriSign Whitepapers 
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

Perl 101 (Part 3) - Looping The Loop
By: Vikram Vaswani and Harish Kamath, (c) Melonfire
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 5
    2000-06-15

    Table of Contents:
  • Perl 101 (Part 3) - Looping The Loop
  • While You Were Sleeping...
  • ...Or Until You Wake Up
  • Dos And Don'ts
  • For Pete's Sake!
  • Every Comedian Needs An Exit
  • Grade School
  • Playing With Friends
  • So Many Choices...

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb 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

    At the virtual BlackBerry Technical Seminar 2008, you can ask your development questions directly of Research In Motion® (RIM) experts, and take advantage of learning opportunities designed uniquely for BlackBerry solution developers. Register Today!

    Perl 101 (Part 3) - Looping The Loop - Grade School


    (Page 7 of 9 )

    Before we go on to our last - also known as final - control structure ofthe day, we're going to take a quick detour and introduce you to adifferent kind of variable.

    As you already know, Perl comes with scalar variables, which can be used tostore a single value. But what you may not know is that it also comes witha mechanism to store multiple values in a single variable. This variable isknown as an "array variable", and it is a useful method of storing andrepresenting related information.

    All the standard rules which apply when naming scalar variables also applyin the case of array variables, with one important exception - where ascalar variable name is preceded by a dollar [$] sign, an array variablename is preceded by an @ symbol.

    Note also that Perl does not place any restrictions on array and scalarvariables sharing the same name in Perl - so the array @stuff is differentfrom the scalar $stuff.

    Now, let's say that you wanted to create an array containing the names ofyour friends:

    @friends = ("Rachel", "Monica", "Phoebe", "Chandler", "Joey", "Ross");
    Thus the array variable @friends contains six elements.

    Each element of the array is a scalar variable, and can be accessed usingscalar notation, with a suffix denoting the element's position in thearray. So, in order to extract the first element of the array @friends,you'd use

    $friends[0]
    while

    $friends[5]
    would give you the sixth element of the array, Ross.

    Similarly, if you wanted to modify a particular element of the array, youcould use the scalar notation above to accomplish your task, like this:

    $friends[3] = "Janice";
    Your array would now contain

    ("Rachel", "Monica", "Phoebe", "Janice", "Joey", "Ross");
    Note that the first element of an array is always referred to by the index0 - this concept, known as "zero-based indexing" often confuses noviceprogrammers, and is just one more reason why geeks have so few friends.

    An array can contain both string and numeric data - for example, this isperfectly valid:

    @mix = ("hello", 34747, 3, "bonjour");
    How about a quick example to illustrate how data can be stored in a singlearray variable:

    #!/usr/bin/perl # this example demonstrates how a single # array variable can hold a student's gradea # in six subjects # set up some variables @subjectlist = ("Math", "Lit.", "Physics", "Biology"); @gradelist = (); $total = 0; # get and store input for($x=0; $x<4; $x++) { print("What was your grade in $subjectlist[$x]? "); $gradelist[$x] = <STDIN>; chomp($gradelist[$x]); } # display it in neatly formatted rows print ("SUBJECT\t\tGRADE\n"); for($y=0; $y<4; $y++) { print ("$subjectlist[$y]\t\t$gradelist[$y]\n"); $total += $gradelist[$y]; } # print a total print ("TOTAL: $total\n");
    And here's what it looks like:

    What was your grade in Math? 10 What was your grade in Lit.? 20 What was your grade in Physics? 30 What was your grade in Biology? 40 SUBJECT GRADE Math 10 Lit. 20 Physics 30 Biology 40 TOTAL: 100
    Let's walk you through this: we've begun by initializing two arrayvariables and one scalar variable. The array @subjectlist contains a listof the subjects to be graded, and the array @gradelist will be populated bythe user with the actual grades. The scalar variable $total will be used todisplay a total figure at the end.

    Next, we've used a "for" loop to display a question, and assign the user'sinput to the @gradelist array in the appropriate slot via the $x counter.Once all four subjects are taken care of [note the conditional expressionin the "for" loop, which automatically stops looping when the counterreaches 4], we've simply used the print() function and a second "for" loopto display a neatly-tabulated row of grades and subjects.

    The second loop also adds each grade to the variable $total, and thisdisplays this total value at the end of the program.

    A couple of other points to note:

    * The \t character used in the print() statements above is used to generatea single "tab" space.

    * The notation

    $total += $gradelist[$y];

    is simply a Perl shortcut for

    $total = $total + $gradelist[$y];

    This article copyright Melonfire 2000. All rights reserved.

    More Perl Articles
    More By Vikram Vaswani and Harish Kamath, (c) Melonfire


     

       

    PERL ARTICLES

    - Perl: More on Lists and Hashes
    - Perl: Dimensional Lists
    - Perl: A Continuing Look at Hashes and Multid...
    - Perl: Another Round with Hashes
    - Perl Hashes
    - Perl Lists: A Final Look at List::Util
    - Perl Lists: Utilizing List::Util
    - Perl Lists: The Split() Function
    - SQL and CGI with Perl and DBI
    - Perl Lists: More Functions and Operators
    - SELECT Queries and Perl
    - Perl Lists: More on Manipulation
    - Creating a Database with Perl and DBI
    - Perl: Sailing the List(less) Seas
    - Perl and DBI





    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway