Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

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

by ramrod (Curate)
on Oct 15, 2009 at 21:01 UTC ( [id://801433]=note: print w/replies, xml ) Need Help??


in reply to textContent() method in XML::LibXML ...

According to the libXML documentation this is what I would expect.

Try nodeValue.
Or maybe use a different Xpath along with the XML::LibXML::Text module.

As with some of your more recent posts, we could help you out more with a sample of the xml, and the xpath you are trying.
  • Comment on Re: textContent() method in XML::LibXML ...

Replies are listed 'Best First'.
Re^2: textContent() method in XML::LibXML ...
by biswanath_c (Beadle) on Oct 16, 2009 at 12:17 UTC

    nodeValue() worked! Thanks a lot!! That was VERY helpful! nodeValue() just picks the value of the current node. textCOntent() collates the values of the node and all its children and it's children's children and so on until the leaf is reached!!!

    Thanks again!


      I am trying with nodeValue() it not working
        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

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-20 13:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found