- or download this
$_ = <FH>;
chomp;
...
my @file= split(/:/);
%data = @file;
}
- or download this
my @file = <FH>;
chomp @file;
%data = split(/:/, join('', @file));
- or download this
@file = join(":",%data);
print FH @file;
- or download this
my $file = join(":", %data);
print FH $file;