Simple question



Very simple question.

I'm reading a file and i want to remove all the <CR><LF> in each lines.

while(FIC) {

   $test = $_; #remove crlf.
   ........... some code

}

How can i do that.

.