Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Re: character class problem

by smackdab (Pilgrim)
on Oct 23, 2003 at 05:13 UTC ( [id://301481]=note: print w/replies, xml ) Need Help??


in reply to Re: character class problem
in thread character class problem

I guess then I need to figure out how to get a line read from a file to be "no\nluck" instead of 'no\nluck' Do i have to convert every line after I read it or is there a better way?

Replies are listed 'Best First'.
Re: Re: Re: character class problem
by Roger (Parson) on Oct 23, 2003 at 05:32 UTC
    I am not sure what you are trying to achieve here. Do you want to read the entire file into a single string? If so, try the following:

    use IO::File; use strict; my $f = new IO::File "data", "r" or die "can not open file"; my $data; { local $/; $data = <$f>; } # at here, $data is your entire data file with embedded \n.


Log In?
Username:
Password:

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

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

    No recent polls found