in reply to Carriage returns in Excel files
What have you tried? What modules are you using? Please read How (Not) To Ask A Question and How do I post a question effectively?.
A carriage return is just a character, and Perl will treat it as such. An easy way of transforming strings in Perl is using Regular Expressions. For example:
$string =~ s/\n|\r//g;
|
|---|