Put one array into another array as an element : Array Assignmengt « Array « Perl

Home
Perl
1.Array
2.CGI
3.Class
4.Data Type
5.Database
6.File
7.GUI
8.Hash
9.Language Basics
10.Network
11.Regular Expression
12.Report
13.Statement
14.String
15.Subroutine
16.System Functions
17.Win32
18.XML
Perl » Array » Array Assignmengt 




Put one array into another array as an element
   


#!/usr/bin/perl -w

use strict;

my @array1 = (123);
my @array2;
@array2 = (@array1, 456);
print "@array2\n";

   
    
    
  














Related examples in the same category
1.Put one array into itself
2.Adding two arrays together
3.Adding more elements to an array
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.