Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Unable to get more than one line

by Sifmole (Chaplain)
on Jan 02, 2003 at 14:22 UTC ( [id://223775]=note: print w/replies, xml ) Need Help??


in reply to Unable to get more than one line

Your problem is that the  while (<F>) will only read a single line, and your  emp and /emp do not occure on the same line.

To do what you are trying to do here you could use  local $/; before the  while, to make Perl slurp in the whole data as one line. You will also need to alter the regex to use the s option ( which also has an extra paren at the end ):

$_ =~m/(<emp>.*<\/emp>)/s;
The /s says (simplified) to treat the whole string as a single line -- don't stop patterns at the newlines.

Of course if you are doing more than just toy-work with XML you might want to check out www.cpan.org and check out the libraries available there.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-24 06:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found