Skip to Main Content
Perl Pocket Reference, 5th Edition
book

Perl Pocket Reference, 5th Edition

by Johan Vromans
July 2011
Intermediate to advanced content levelIntermediate to advanced
104 pages
2h 14m
English
O'Reilly Media, Inc.
Content preview from Perl Pocket Reference, 5th Edition

Array and List Functions

defined expr

Not specifically an array function, but provides a convenient way to test whether an array element has a defined value.

delete [ local ] elt
delete [ local ] @array[index1, . . . ]

elt must specify an array element like $array[index] or expr->[index]. Deletes the specified elements from the array. With local, the deletion is local to the enclosing block. Returns aliases to the deleted values. Deleting the last elements of an array will shorten the array.

each @array

In list context, returns a two-element list consisting of the index and an alias to the value for the next element of the array. In scalar context, returns only the index. After all values have been returned, an empty list is returned. The next call to each after that will start iterating again. A call to keys or values will reset the iteration.

exists elt

elt must specify an array element (see delete above). Checks whether the specified array element exists.

grep expr, list
grep block list

Evaluates expr or block for each element of the list, locally aliasing $_ to the element. In list context, returns the list of elements from list for which expr or block returned true. In scalar context, returns the number of such elements.

join expr, list

Returns the string formed by inserting expr between all elements of list and concatenating the result.

keys @array

In list context, returns a list of all the keys of the array. In scalar context, returns the number of elements.

map expr, list
map block list ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Perl Testing: A Developer's Notebook

Perl Testing: A Developer's Notebook

Ian Langworth, Chromatic
Perl Hacks

Perl Hacks

Chromatic, Damian Conway, Curtis Ovid Poe, Curtis (Ovid) Poe

Publisher Resources

ISBN: 9781449311186Errata Page