in reply to Re: Sorting on a split hash value
in thread Sorting on a split hash value

If the delimiter is indeed '::', one can use split and pass in a limit.
($count, $rest) = split(/::/,$games{$_},2);

thor