Skip to content

Instantly share code, notes, and snippets.

@andyhd
Created May 20, 2011 08:33
Show Gist options
  • Save andyhd/982558 to your computer and use it in GitHub Desktop.
Save andyhd/982558 to your computer and use it in GitHub Desktop.
IP dotted quad string to integer
// Scala is great
def ipToInt(ip: String) = ip.split('.').map(_.toInt).foldLeft(0)((sum, i) => sum * 256 + i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment