in reply to Extracting Pattern Match from log

You can assign the list of matched strings to an array.
try this
@lookingfor = $_ =~ /450 <([^>]*)>/;
you might want to replace the regx by something more reasonable ...
Imre