in reply to Re: Removing everything before the first comma separator on each line of a text file
in thread Removing everything before the first comma separator on each line of a text file

I got it working but not as a one liner, thank you for your help. Great Advice

while (<$in>){ s/^(?:L\d+|DETAIL|SPACE|SUMMARY),//; print $out $_; }
  • Comment on Re^2: Removing everything before the first comma separator on each line of a text file
  • Download Code