while () { next unless /^TITLE\s+(.*)$/; my $title = $1; while () { last unless /^TITLE\s+\d+\s+(.*)$/; $title .= $1 } print "Here is the title you wanted: $title"; last; }