Last updated:
0 purchases
ip to int
ip-to-int #
Usage #
Class IpInt #
IpInt("<IP-ADDRESS>")
copied to clipboard
IpInt("127.0.0.1")
copied to clipboard
toInt
This method return the String ip address as integer
IpInt("<IP-ADDRESS>").toInt()
copied to clipboard
int integer = IpInt("127.2.3.1").toInt();
print(integer);
2130838273
copied to clipboard
toIp
This method return the integer as an String ip address
IpInt("<INTEGER>").toIp()
copied to clipboard
String ipAddress IpInt("2130706433").toIp()
print(ipAddress)
"127.0.0.1"
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.