in reply to
Extracting Pattern Match from log
You can assign the list of matched strings to an array.
try this
@lookingfor = $_ =~ /450 <([^>]*)>/;
[download]
you might want to replace the regx by something more reasonable ...
Imre
Comment on
Re: Extracting Pattern Match from log
Download
Code
In Section
Seekers of Perl Wisdom