Say for example the numbers are in format :
1.1.10
1.1.10.1
1.1.10.2
1.1.11
1.1.12
1.1.13
1.1.13.1
1.1.3
1.1.4
And the wat I am looking for output is :
1.1.3
1.1.4
1.1.10
1.1.10.1
1.1.10.2
1.1.11
1.1.12
1.1.13
1.1.13.1
or (no modules)
or (no modules, faster, but requires an array rather than a list for input)
In the |
|||||
|
|
Try the following:
Output:
Hope this helps! |
|||
|
|
|
This may be easier for you to comprehend:
|
|||
|
|
sort { eval $a cmp eval $b } @numbers– TLP Jul 20 '12 at 19:061.1.1.10is the same asv1.1.1.10, which stringifies tochr(1).chr(1).chr(1).chr(10). In other words,eval "1.1.1.10"is an expensive and risky way to dopack "W*", split /\./, "1.1.1.10". Yes, you can change the "C" in the pack templates in my solutions to "W". Does numbers up to 4 billion on 32-bit Perls, and 2**64-1 on 64-bit machines. – ikegami Jul 20 '12 at 21:10cmpoperator. I named it a quick hack, because it is probably not a good way to solve this particular problem. – TLP Jul 23 '12 at 20:58