An array is an ordered list of scalars: strings and/or numbers. : Array Item « Array « Perl






An array is an ordered list of scalars: strings and/or numbers.

    

#The elements of the array are indexed by integers starting at 0. 
#The name of the array is preceeded by an "@" sign.

@names = ( "J", "M", "L" );
print "@names";  # Prints the array with elements separated by a space
print "$names[0] and $names[2]";  
print "$names[-1]\n";  
$names[3]="N";    # Assign a new value as the 4th element

   
    
    
    
  








Related examples in the same category

1.Arrays: a collection of similar data elements
2.A program that prints the elements of a list.
3.Print an element in a list of variables
4.Store various type values in an array
5.Append two arrays to form another array
6.Duplicate array elements
7.Mixed Lists
8.Mixed Data Assigned to Array Cells
9.Array Elements
10.Append to array
11.Get array last element
12.Creating and initializing an array with list assignment