in reply to Re: regexp for extracting IP address
in thread regexp for extracting IP address

Simplify and lock down a little further:
/(?:\d{1,3}\.){3}\d{1,3}/;
This covers 256-999 as well, but is pretty much what you need in most instances.

cLive ;-)