Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Newlines: reading files that were created on other platforms

by msemtd (Scribe)
on Feb 02, 2005 at 14:12 UTC ( [id://427253]=note: print w/replies, xml ) Need Help??


in reply to Newlines: reading files that were created on other platforms

When reading text of an unknown source that is likely to mix line endings (I find this in the html source of quite a few websites and in WinNT error messages), I tend to preprocess with "tr/\15\12/\n/s;" and then carry on as if nothing was amiss. This does, however, depend _entirely_ on what you want to do with the rest of the data. To demonstrate its usefulness...
#!/usr/bin/perl -w use strict; use Data::Dumper; $Data::Dumper::Useqq = 1; my $text; my @e = ("\012", "\015", "\012\015", "\015\012"); $text .= "this is the line ". ($_ + 1) . $e[$_] for (0..$#e); print "Before: ". Dumper $text; $text =~ tr/\15\12/\n/s; print "After: ". Dumper $text;
Good luck.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://427253]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-19 19:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found