http://www.perlmonks.org?node_id=791463


in reply to Re: Regexp: Private IP Addresses
in thread Regexp: Private IP Addresses

Not to detract from your code, but that in effect is exactly what Net::IP::Match::Regexp is doing.

Replies are listed 'Best First'.
Re^3: Regexp: Private IP Addresses
by ikegami (Patriarch) on Aug 26, 2009 at 21:49 UTC

    No. There are similarities between all the solutions provided in this discussion (including between mine and that module's), but the module's solution is far from being exactly the same as any of mine.

    According to the docs, it uses the binary representation of the address (a long string of zeros and ones), whereas all of my solutions work with the address as a native number (C long). That makes some of them byte-oriented and some of them mask-oriented, but none are bit-oriented like that module.

    Mind you, any of the solutions in this discussion could be given the same interface as that module.