Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        map { /Patch_(\d+)\.(\d+)/; [$_, $1, $2] } @array;
    
    say for @array;
    
  2. or download this
    $ perl sort_versions.pl
    Patch_1.0
    ...
    Patch_11.0
    Patch_11.2
    Patch_11.4