Skip to content

Instantly share code, notes, and snippets.

@marwan-nwh
Created December 15, 2012 15:11
Show Gist options
  • Save marwan-nwh/4296189 to your computer and use it in GitHub Desktop.
Save marwan-nwh/4296189 to your computer and use it in GitHub Desktop.
public class IpCutter2{
public static void main(String[] args){
String[] ip;
ip=args[0].split("\\.");
for(int i=0;i<ip.length;i++){
System.out.println(ip[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment