programming-examples/perl/Statement/Use a label.pl

11 lines
261 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
$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);