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