Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Unable to get more than one line

by hiseldl (Priest)
on Jan 02, 2003 at 14:27 UTC ( [id://223776]=note: print w/replies, xml ) Need Help??


in reply to Unable to get more than one line

If you want to write a short script, check out the XML::Simple module. If you are writing an application take a look at XML::Parser or XML::Twig.

Here is a snippet that may be helpful:

#!/usr/bin/perl.exe -w use strict; use XML::Simple; use Data::Dumper; my $ref = XMLin("./data.xml"); print Dumper($ref); print $ref->{emp}->{name},$/; print $ref->{emp}->{age},$/; print $ref->{emp}->{address},$/
...and just for completeness here is the 'data.xml' file that I used:
<profile> <emp> <name>Mahesh</name> <age>24</age> <address>New york</address> <desig>Developer</desig> </emp> </profile>
...and what my results looked like:
$ ./script.pl $VAR1 = { 'emp' => { 'desig' => 'Developer', 'address' => 'New york', 'age' => '24', 'name' => 'Mahesh' } }; Mahesh 24 New york

--
hiseldl
What time is it? It's Camel Time!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-24 02:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found