in reply to XML::LibXML help needed...

You've got an object (of type "XML::LibXML::Element" as the print suggests).

You are currently printing that object reference, but you want to print the contents of that node instead.

I am not familiar with the module, but there should be a method you can call to get the contents. I imagine you will probably need to make a recursive sub to print the contents if the element contains other elements.

$detail->toString() perhaps.

Replies are listed 'Best First'.
Re^2: XML::LibXML help needed...
by spstansbury (Monk) on Aug 26, 2009 at 19:54 UTC

    Yes

    print $detail->to_literal

    Thanks!