in reply to Problem sorting strings numerically

Here, @a = sort {$a <=> $b or length($a) <=> length($b)} @a; 15 and '15&ndash;21' both become 15 in numeric context. When numeric values are equal, length of string is taken as a tiebreaker.

After Compline,
Zaxo