- or download this
#!/usr/bin/perl --
use strict; use warnings;
my $data = "Region Item volume Month";
...
/(volume|Item)/ and print "$1 $daix\n";
}
__END__
- or download this
#!/usr/bin/perl --
use strict; use warnings;
my $data = "Region Item volume Month";
...
$daix++;
}
__END__
- or download this
#!/usr/bin/perl --
use strict; use warnings; use 5.012;
my $data = "Region Item volume Month";
...
/(volume|Item)/ and print "$1 $daix\n";
}
__END__