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