in reply to Re: Remove the first word for each lines from a text file
in thread Remove the first word for each lines from a text file

ah.... that helps.
while (<$in>) { $_ =~ s/^\s*\S+\s*//; print $out $_; }
Working now. Thanks