Adding more elements to an array : Array Assignmengt « Array « Perl






Adding more elements to an array

   

@array = (1, 2, 3);
$array[5] = "Here is a new element!";
print "$array[5]\n";

   
    
    
  








Related examples in the same category

1.Put one array into another array as an element
2.Put one array into itself
3.Adding two arrays together
4.An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment
5.Add elements to @array by referring to nonexistent element 3.
6.Adding array items from one array to another array
7.Assign returning array value from a function to an array
8.Assigning one array variable to another variable
9.Perform list assignments and display results