I've a list of IP addresses as follows
192.168.1.5
69.52.220.44
10.152.16.23
192.168.3.10
192.168.1.4
192.168.2.1
I'm looking for such a way to sort this list to match the below order
10.152.16.23
69.52.220.44
192.168.1.4
192.168.1.5
192.168.2.1
|
I've a list of IP addresses as follows
I'm looking for such a way to sort this list to match the below order
|
||||
|
|
|
This might look as a hack, but it does exactly what you need:
|
|||||||||||||||
|
|
You can convert each IP address into an integer like so ...
Then sort by the integer representation. |
|||
|
|