Help for this page

Select Code to Download


  1. or download this
    C<split_sort> has four required parameters. The first and second parem
    +eters are C<$a> and C<$b> from C<sort> or C<$b> and C<$a> if you want
    + a descending sort. The third parameter is the expression you want to
    + split the strings by. The fourth is the type of sort you want, C<num
    +ber> or C<alpha> (C<letter>).
    
  2. or download this
    C<split_sort> has three required parameters. The first and second pare
    +meters are C<$a> and C<$b> from C<sort> or C<$b> and C<$a> if you wan
    +t a descending sort. The third parameter is the type of sort you want
    +: C<number>, C<left>, C<right>, or C<alpha> (C<letter>). The fourth p
    +arameter is the expression you want to split the strings by and can b
    +e ignored for alpha (letter) sort.
    
  3. or download this
    package Fancy::Sort::Split;
    use v5.16.0;
    ...
    =cut
    
    1;