I have a IPv4 address which should be compared against a pattern. A pattern can either be a specific address maybe containing wildcards or a dns.

  • *
  • ..*.*
  • 192.168.*.5
  • 206.0.3.4-25
  • 45.30.9.101
  • www.google.de

I already figured out that the InetAddress/Inet4Address class is the right one. But i cant figure out how to use it with both dns and wildcards. I get pattern and address as strings.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

trying using a regular expression.

For numbers (\d{1,3},\d{1,3},\d{1,3},\d{1,3}) For domain, just google regular expression to match domain URL

link|improve this answer
regex are no option since domains need to be resolved – Paranaix Feb 23 at 15:31
Then create an new URL(domain).getContent(); to check on domain – Churk Feb 23 at 17:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.