IpInt("<IP-ADDRESS>")
IpInt("127.0.0.1")
This method return the String ip address as integer
IpInt("<IP-ADDRESS>").toInt()
int integer = IpInt("127.2.3.1").toInt();
print(integer);
2130838273
This method return the integer as an String ip address
IpInt("<INTEGER>").toIp()
String ipAddress IpInt("2130706433").toIp()
print(ipAddress)
"127.0.0.1"