Assigning one array variable to another variable : Array Assignmengt « Array « Perl






Assigning one array variable to another variable

   

@a1 = ("one", "two", "three");
@a2 = @a1;

print $a2[1];

   
    
    
  








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.Adding more elements to an array
5.An array on the left of a list assignment receives all remaining initializers in the list on the right side of a list assignment
6.Add elements to @array by referring to nonexistent element 3.
7.Adding array items from one array to another array
8.Assign returning array value from a function to an array
9.Perform list assignments and display results