forked from szabgab/perlmaven.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperl-arrays.tt
215 lines (156 loc) · 4.16 KB
/
perl-arrays.tt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
=title Perl Arrays
=timestamp 2013-03-23T20:45:02
=indexes @, array, arrays, length, size, foreach, Data::Dumper, scalar, push, pop, shift
=status show
=books beginner_book
=author szabgab
=index 1
=archive 1
=feed 1
=comments 1
=social 1
=abstract start
In this episode of the <a href="/perl-tutorial">Perl Tutorial</a> we are going to learn about <b>arrays in Perl</b>.
This is an overview of how arrays work in Perl. We'll see more detailed explanations later.
Variable names of arrays in Perl start with the at mark: <hl>@</hl>.
Due to our insistance on using <hl>strict</hl> you have to declare these variables using the <hl>my</hl> keyword
before the first usage.
=abstract end
Remember, all the examples below assume your file starts with
<code lang="perl">
use strict;
use warnings;
use 5.010;
</code>
Declare an array:
<code lang="perl">
my @names;
</code>
Declare and assign values:
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
</code>
<h2>Debugging of an array</h2>
<code lang="perl">
use Data::Dumper qw(Dumper);
my @names = ("Foo", "Bar", "Baz");
say Dumper \@names;
</code>
The output is:
<code>
$VAR1 = [
'Foo',
'Bar',
'Baz'
];
</code>
<h2>foreach loop and perl arrays</h2>
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
foreach my $n (@names) {
say $n;
}
</code>
will print:
<code>
Foo
Bar
Baz
</code>
<h2>Accessing an element of an array</h2>
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
say $names[0];
</code>
Note, when accessing a single element of an array the leading sigil changes from <hl>@</hl> to <hl>$</hl>.
This might cause confustion to some people, but if you think about it, it is quite obvious why.
<hl>@</hl> marks plural and <hl>$</hl> marks singular. When accessing a single element
of an array it behaves just as a regular scalar variable.
<h2>Indexing array</h2>
The indexes of an array start from 0. The largest index is always in the variable called
<hl>$#name_of_the_array</hl>. So
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
say $#names;
</code>
Will print 2 because the indexes are 0,1 and 2.
<h2>Length or size of an array</h2>
In Perl there is no special function to fetch the size of an array, but there
are several ways to obtain that value. For one, the size of the array is one more
than the largest index. In the above case <hl>$#names+1</hl> is the <b>size</b> or
<b>length</b> of the array.
In addition the <hl>scalar</hl> function can be used to to obtain the size of an array:
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
say scalar @names;
</code>
Will print 3.
The scalar function is sort of a casting function that - among other things - converts an
array to a scalar. Due to an arbitrary, but clever decision this conversion yields the size
of the array.
<h2>Loop on the indexes of an array</h2>
There are cases when looping over the values of an array is not enough.
We might need both the value and the index of that value.
In that case we need to loop over the indexes, and obtain the values using the
indexes:
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
foreach my $i (0 .. $#names) {
say "$i - $names[$i]";
}
</code>
prints:
<code>
0 - Foo
1 - Bar
2 - Baz
</code>
<h2>Push on Perl array</h2>
<hl>push</hl> appends a new value to the end of the array, extending it:
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
push @names, 'Moo';
say Dumper \@names;
</code>
The result is:
<code>
$VAR1 = [
'Foo',
'Bar',
'Baz',
'Moo'
];
</code>
<h2>Pop from Perl array</h2>
<hl>pop</hl> fetches the last element from the array:
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
my $last_value = pop @names;
say "Last: $last_value";
say Dumper \@names;
</code>
The result is:
<code>
Last: Baz
$VAR1 = [
'Foo',
'Bar',
];
</code>
<h2>shift the Perl array</h2>
<hl>shift</hl> will return the left most element
of an array and move all the other elements to the left.
<code lang="perl">
my @names = ("Foo", "Bar", "Baz");
my $first_value = shift @names;
say "First: $first_value";
say Dumper \@names;
</code>
The result is:
<code>
First: Foo
$VAR1 = [
'Bar',
'Baz',
];
</code>