Help for this page

Select Code to Download


  1. or download this
    .0000000001;2;1;.5;.2
    .5;2;1;.5;.5
    0.3;1.5;.5;.5;.2
    1;1;.7;1;1
    .4;1;.4;1;.5
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    
    @sortedlines = sort { $b =~ /(^\d*\.*\d+);/ <=> $a =~ /(^\d*\.*\d+);/ 
    +} @lines;
    print "SORTED LINES = @sortedlines\n";