Using an Inline Function to Sort a Numeric List : sort « Array « Perl






Using an Inline Function to Sort a Numeric List

     

# Sorting numbers with an unamed subroutine
@sorted_numbers= sort {$a <=> $b} (3,4,1,2);
print "The sorted numbers are: @sorted_numbers", ".\n";

   
    
    
    
    
  








Related examples in the same category

1.The sort command sorts an array
2.Sort in action
3.A program that sorts an array.
4.ASCII and Numeric Sort Using Subroutine
5.Character and Number Sorts
6.Sorts
7.Pass user-defined function to sort function
8.Sort a string array
9.Sort an integer array
10.Using cmp in array sort customized function
11.The sort function sorts and returns a sorted array.
12.Using sort function in print statement
13.Numeric sort
14.Using <=> operator in array sort function
15.Print function with sort and customized sorting function
16.Print function with sort and customized sorting function in a descending order