Validate IP Address

Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither.

IPv4 addresses are canonically represented in dot-decimal notation, which consists of four decimal numbers, each ranging from 0 to 255, separated by dots ("."), e.g.,172.16.254.1;

Besides, leading zeros in the IPv4 is invalid. For example, the address 172.16.254.01 is invalid.

IPv6 addresses are represented as eight groups of four hexadecimal digits, each group representing 16 bits. The groups are separated by colons (":"). For example, the address 2001:0db8:85a3:0000:0000:8a2e:0370:7334 is a valid one. Also, we could omit some leading zeros among four hexadecimal digits and some low-case characters in the address to upper-case ones, so 2001:db8:85a3:0:0:8A2E:0370:7334 is also a valid IPv6 address(Omit leading zeros and using upper cases).

However, we don't replace a consecutive group of zero value with a single empty group using two consecutive colons (::) to pursue simplicity. For example, 2001:0db8:85a3::8A2E:0370:7334 is an invalid IPv6 address.

Besides, extra leading zeros in the IPv6 is also invalid. For example, the address 02001:0db8:85a3:0000:0000:8a2e:0370:7334 is invalid.

Note: You may assume there is no extra space or special characters in the input string.

Example 1:

Input: "172.16.254.1"

Output: "IPv4"

Explanation: This is a valid IPv4 address, return "IPv4".

Example 2:

Input: "2001:0db8:85a3:0:0:8A2E:0370:7334"

Output: "IPv6"

Explanation: This is a valid IPv6 address, return "IPv6".

Example 3:

Input: "256.256.256.256"

Output: "Neither"

Explanation: This is neither a IPv4 address nor a IPv6 address.
 import java.util.regex.*;class Solution {
     public String validIPAddress(String ip) {
    if (checkIpv4(ip)){
      return "IPv4";
    } else if (checkIpv6(ip)){
      return "IPv6";
    } else {
      return "Neither";
    }
  }

  private boolean checkIpv4(String ip){
    String ip4Pattern = "(2(5[0-5]|[0-4][0-9])|1[0-9]{1,2}|[1-9]?[0-9])";
    Pattern ipv4Pattern = Pattern.compile("^(" + ip4Pattern + "[.]){3}" + ip4Pattern + "$");
    return ipv4Pattern.matcher(ip).matches();
  }

  private boolean checkIpv6(String ip){
    String ip6Pattern = "[0-9a-fA-F]{1,4}";
    Pattern ipv6Pattern = Pattern.compile("^(" + ip6Pattern + "[:]){7}" + ip6Pattern + "$");
    return ipv6Pattern.matcher(ip).matches();
  }
}



Here we are going to solve the problem using Regex. If you are familiar with usage of each symbol in regex it is easier to understand.

Steps of creating chunks
Src:Leetcode


The following are the possibilities of IPv4, IPv6..,
  1. Chunk contains only one digit, from 0 to 9.

  2. Chunk contains two digits. The first one could be from 1 to 9, and the second one from 0 to 9.

  3. Chunk contains three digits, and the first one is 1. The second and the third ones could be from 0 to 9.

  4. Chunk contains three digits, the first one is 2 and the second one is from 0 to 4. Then the third one could be from 0 to 9.

  5. Chunk contains three digits, the first one is 2, and the second one is 5. Then the third one could be from 0 to 5.


Subscribe us to receive updates instantly.

Please let us know about your views in comment section.

Happy Coding...😍

Comments

Popular posts from this blog

Balanced Binary Tree

First Unique Character in a String

Majority Element

Smallest Range II