Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
@unsorted = ('a|b|c|d|','a|b|c|b|','a|b|c|e','a|b|c|a|');
@sorted = map { $_->[0] }
sort { $a->[1] cmp $b->[1] }
map {
my @s = split /\|/;
[$_, pop @s]
} @unsorted;
@array = sort MySortRtn @array;
...
sub MySortRtn {
my @a = split('|', $a);
my @b = split('|'. $b);
return $a[19] <=> $b[19];
}