in reply to Re^3: Parsing out first namesin thread Parsing out first names
foreach my $name ( @names ) { $name =~ s/ [a-zA-Z]\.?$//; print "$name \n"; } [download]