in reply to Re: How to Parse XML output?
in thread How to Parse XML output?

I tired it, but its not working. Below is what I am doing. my $xml_string= $result->result; //Store return value of webservices function. my $tkt= $_->{AttrValue} for grep { $_->{AttrName} eq 'ref_num' } @{$xmls->{Attributes}->{Attribute}}; print $tkt Not able to capture value.

Replies are listed 'Best First'.
Re^3: How to Parse XML output?
by powermonk (Initiate) on Mar 13, 2013 at 17:12 UTC
    Finally Got it. Was able to extract it using XML::LibXML by passing the string. Thanks all for your valuable help.