Output all elements in an array with print command : Array Output « 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 Output
Output all elements in an array with print command
@array =
(
1
,
2
,
3
)
;
print @array;
Related examples in the same category
1.
Output the whole array in print
2.
Months Of The Year
3.
A program that prints every element of an array.
4.
Print each value in the array.
5.
Output nested array
6.
Output the last element in the array
7.
Output the number of elements and the last index number
8.
print "@{[uc(hello)]} there.\n";
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.