Help for this page

Select Code to Download


  1. or download this
    sub extract {
        $_ = shift;
    ...
        push @extract_i, $_[0];
        my $i_pstn = join('-', @extract_i);
    }
    
  2. or download this
    sub extract {
        return join('-', (split(/:/, shift))[1,2], shift);
    }