Jose Elias
Member since Nov 1, 2013
- Profile: /members/11379-jose-elias.htm
- URL: http://www.eliax.com
- Comments: 1
Recent Blog Comments By Jose Elias
-
Converting IP Addresses To And From Integer Values With ColdFusion
Posted on Nov 1, 2013 at 4:10 PM
Here's a much easier and shorter way (one line) to convert an IPv4 address to a numeric value... If you want to convert this (assume it's store in variable "ip"): "12.48.40.0" Just do this: (ListGetAt(ip, 4, ".") + ListGetAt(ip, 3, ".") * 256 + ListGetAt(ip... read more »