Skip to Content
Programming PERL in the .NET Environment
book

Programming PERL in the .NET Environment

by Yevgeny Menaker, Michael Saltzman, Robert J. Oberg
September 2002
Intermediate to advanced content levelIntermediate to advanced
496 pages
10h
English
Addison-Wesley Professional
Content preview from Programming PERL in the .NET Environment

Writing Special Sort Functions

Some Perl functions require that you write your own function to alter the default behavior of the Perl function. The best example of this is the sort function. Whenever data is sorted, there are two phases to the algorithm: the comparison phase, to see if elements are out of order, and the exchange phase, to put them in order. The default comparison for the sort is to compare items lexicographically. This is why the following program produces the output that is displayed. See the folder DefSort.

% type defsort.pl
#
#       defsort.pl
#
@numbers = (1, 15, 100, 250, 2, 200, 15, 25);
print join("\n", sort(@numbers));
% perl defsort.pl
1
100
15
15
2
200
25
250
%

If you want to sort these values numerically, you need to ...

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

Sams Teach Yourself Perl in 21 Days, Second Edition

Sams Teach Yourself Perl in 21 Days, Second Edition

Laura Lemay, Rafe Colburn
Pro Perl

Pro Perl

Peter Wainwright

Publisher Resources

ISBN: 0130652067Purchase book