- or download this
open(NPBXNUM1, ">npbxnum1");
open(MYINPUTFILE, "npbxnum");
- or download this
open(NPBXNUM1, ">npbxnum1");
open(MYINPUTFILE, "<npbxnum");
- or download this
open(NPBXNUM1, '>', "npbxnum1");
open(MYINPUTFILE, '<', "npbxnum");
- or download this
while (<MYINPUTFILE>) {
my($line) = $_;
chomp($line);
- or download this
while (my $line = <MYINPUTFILE>) {
chomp($line);
- or download this
foreach my $inputData ($line) {
my $outputData = $inputData;
...
}
print NPBXNUM1 "$outputData\n";
}
- or download this
my $outputData = $line;
while (length($outputData) < 4) {
...
}
print NPBXNUM1 "$outputData\n";
}