Mwnci sortips() Function

Syntax

sortips(array)

Description

The sortips() function returns an array of IP addresses in ascending order.

Ips=["192.168.0.0", "192.168.0.69", "192.168.0.22", "192.168.0.122", "192.168.0.87", "192.168.0.72"]
SortedIps=sortips(Ips)
println(SortedIps)yy


["192.168.0.0", "192.168.0.22", "192.168.0.69", "192.168.0.72", "192.168.0.87", "192.168.0.122"]