Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: textContent() method in XML::LibXML ...

by Anonymous Monk
on Feb 09, 2012 at 14:35 UTC ( [id://952732]=note: print w/replies, xml ) Need Help??


in reply to Re^2: textContent() method in XML::LibXML ...
in thread textContent() method in XML::LibXML ...

I am trying with nodeValue() it not working
  • Comment on Re^3: textContent() method in XML::LibXML ...

Replies are listed 'Best First'.
Re^4: textContent() method in XML::LibXML ...
by Anonymous Monk on Feb 09, 2012 at 14:39 UTC
    my complete code is like this
    <config> <user>freddy</user> <passwd>longNails</passwd> <books> <book author="Steinbeck" title="Cannery Row"/> <book author="Faulkner" title="Soldier's Pay"/> <book author="Steinbeck" title="East of Eden"/> </books> </config> sub traverse { my $node = shift; print $node->nodeName() . "\n"; print $node->nodeValue() . "\n"; if( $node-> hasAttributes() ) { my @attrList = $node->attributes(); foreach my $attr (@attrList) { my $key = $attr->nodeName(); my $value = $attr->getValue(); print $key . "\t" . $value . "\n" ; } print "\n"; } if( $node-> hasChildNodes() ) { my @cns = $node->childNodes(); foreach my $cn (@cns) { my $key = $cn->getName(); if($key !~ /\#text/ ) { traverse($cn); } } } }
    gives errors could you help me
      gives errors could you help me
      No, unless you specify the errors.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (1)
As of 2024-04-19 00:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found