in reply to Removing Control Characters from a File
Hi,
Depend's on how much data you are reading line by line,
If it's not to much, why not slurp all of it up in one go?
my (@data) = <FILE_HANDLE>;
Then clean up the data (process the array) in memory?
Just a thought :)