Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Opening text files with CR format

by linuxer (Curate)
on Aug 03, 2009 at 12:12 UTC ( [id://785422]=note: print w/replies, xml ) Need Help??


in reply to Opening text files with CR format

Hi,

have a look at perlvar; search for $INPUT_RECORD_SEPARATOR

You can set that variable to the needed character/string to parse your files...

Example snippet:

#! /usr/bin/perl use strict; use warnings; # ... for my $file ( @files ) { if ( open my $fh, '<', $file ) { # see perldoc perlvar local $/ = "\x0d"; @lines = <$fh>; } else { warn "$file: $!\n"; } }

Replies are listed 'Best First'.
Re^2: Opening text files with CR format
by knith (Initiate) on Aug 03, 2009 at 12:30 UTC
    Thanks a million, you just saved me a lot of frustation time :P

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (5)
As of 2024-04-18 05:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found