You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/perl/File/Apply chomp to all elements...

12 lines
254 B
Perl

#!usr/bin/perl
use warnings;
use strict;
my @array = ( "One\n", "Two\n", "Three", "Four", "Five\n" );
my $newlines = chomp ( @array );
print "\nWe just removed $newlines newlines from that list!\n";
print "\nThe list is now @array.";