Letter based range : Range « Statement « Perl






Letter based range

  


#!c:/perl/bin

@alphabet = (a..z);

for($loopcount=0; $loopcount<27; $loopcount++)
    {
        print "@alphabet[$loopcount] \n";
    }

   
    
  








Related examples in the same category

1.Demonstrating the .. operator
2.@numbers = ( 1 .. 10 );
3.Using .. to construct array
4.The .. operator goes from a minimum to a maximum, with foreach
5.Setting elements in a list to equal the corresponding elements of another list with three different names
6.Use range operator with for statement
7.Range counting up
8.Range counting down
9.Range based on letter
10.Range based on letter and digit: from 3 to z
11.Range based on letter and digit: from z to 3
12.From to
13.The Range Operator and Array Assignment
14.Range Operator
15.The range operator and foreach loop
16.range list and for loop
17.Two ranges
18.String based range
19.Counting Up And Down