http://www.perlmonks.org?node_id=991338


in reply to break out my foreach loop

Somewhat more concise code:
my $octetstr; ($octetstr)= m/^Routing entry for\s+([\d\.]+)/ and last for @Output; die "No Routing address found in \@Output\n" unless $octetstr;
Update: If this is IPV4, you can extract the octets of the IP using
my @Route; @Route= m/^Routing entry for\s+(\d+)\.(\d+)\.(\d+)\.(\d+)/ and last fo +r @Output; die "No Routing address found in \@Output\n" unless @Route;

             I hope life isn't a big joke, because I don't get it.
                   -SNL