Exit a loop : Last « Statement « Perl
- Perl
- Statement
- Last
Exit a loop
$Pattern = "perl";
$File = "myfile";
open (FILE,$File) || die "Can't open $File, $!\n";
while(<FILE>) {
if (/$Pattern/o) {
print "$File: $_";
last;
}
}
close(FILE);
Related examples in the same category