Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: Parse handler for Attributes in XML

by balajinagaraju (Sexton)
on Apr 10, 2012 at 10:13 UTC ( [id://964301]=note: print w/replies, xml ) Need Help??


in reply to Re: Parse handler for Attributes in XML
in thread Parse handler for Attributes in XML

Thanks Ken, But i want to access specific attributes rather than checking for the presence of the attributes.
  • Comment on Re^2: Parse handler for Attributes in XML

Replies are listed 'Best First'.
Re^3: Parse handler for Attributes in XML
by kcott (Archbishop) on Apr 10, 2012 at 10:53 UTC

    $attrs{command} is a specific attribute. Checking for existence before attempting to access a value (e.g. ... $attrs{command} eq 'some_value' ...) avoids autovivification; depending on what other code you write, this may or may not be important.

    However, the main point I was trying to get across was that %attrs eq "command" was not doing what you wanted/intended/expected. The following short piece of code may help to further explain this:

    $ perl -Mstrict -Mwarnings -E ' > my %x = (a => 1); > say +(%x eq q{a}) ? 1 : 0; > say %x; > say qq{@{[%x]}}; > ' 0 a1 a 1

    -- Ken

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://964301]
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-25 22:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found