in reply to Unable to get more than one 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 ):
The /s says (simplified) to treat the whole string as a single line -- don't stop patterns at the newlines.$_ =~m/(<emp>.*<\/emp>)/s;
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.
|
---|