http://qs321.pair.com?node_id=427234


in reply to Grepping out strings

Assuming protocol and all, it's pretty easy with Regexp::Common:

use Regexp::Common qw/URI/; my @results; while ($string =~/$RE{URI}{-keep}/g) { push @results, $1; }
Your sample seems to omit the protocol and other bits that make a URI. Do you know they are all http? Try looking at the regex from R::C::URI and pick out the host-and-domain part. It will start with two literal slashes and run until the next slash or space, whichever comes first.

After Compline,
Zaxo