Beefy Boxes and Bandwidth Generously Provided by pair Networks Cowboy Neal with Hat
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: XML package for parsing values in the opening tag.

by gjb (Vicar)
on Apr 14, 2004 at 10:04 UTC ( [id://345059]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to XML package for parsing values in the opening tag.

XML::Simple will do the job nicely. The following code

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; use XML::Simple; my $xml = XMLin('login.xml'); print Dumper($xml);
produces as output on your example:
$VAR1 = { 'LOGIN' => { 'firstName' => 'Alice', '_AgeAtApplicationYears' => '33', 'phone' => '111-111-1111', 'state' => 'HI', 'zip' => '11111', 'userName' => 'testUser', 'lastName' => 'Firstimer', 'address' => '111 test street' } };

To access e.g. the 'state' attribute, use $xml->{LOGIN}->{state}

Hope this helps, -gjb-

Update: What you call 'embedded tags' are actually termed attributes in XML speak ;)

Replies are listed 'Best First'.
Re: Re: XML package for parsing values in the opening tag.
by dwatson06 (Friar) on Apr 14, 2004 at 10:30 UTC
    It's a parse of sheer beauty.
    Works perfectly.

    Thank you very much,
    DWW

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://345059]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.