in reply to Cross Platform end of Line characters
My normal method for fixing this is to slurp the entire file in using something like.
Once it's in split it by hand using my handy dandy "works for any platform" regex.
Other things you can do with it is to "fix" newlines for the "current" platform using.
(The return by refence is just there to avoid copying large files more times than is needed)sub slurp { my $file = shift or return undef; local $/ = undef; open( FOO, $file ) or return undef; my $buffer = <FOO>; close FOO; return \$buffer; }
Once it's in split it by hand using my handy dandy "works for any platform" regex.
And we are done. The important bit here is (?:\015\012|\015|\012), which works everywhere. In fact, it will even work for "broken" files that somehow got multiple types of newlines in a single file. And note the order of the three newlines IS important.my $content = slurp( $file ) or die "Failed to load file"; my @lines = split /(?:\015\012|\015|\012)/, $$content;
Other things you can do with it is to "fix" newlines for the "current" platform using.
$$content =~ s/(?:\015\012|\015|\012)/\n/g;
|
---|
In Section
Seekers of Perl Wisdom