http://www.perlmonks.org?node_id=729154


in reply to XML::Twig output with delimiter

I think ,this would help you to get your need,
my $t= XML::Twig->new( twig_handlers => { '_all_' => sub { $_[1]->suffix( " ");}} ); $t->parsefile("new.xml"); my $root= $t->root; my @para= $root->children(); # get the root's children foreach my $para (@para) { print $para->text()."\n"; }

Replies are listed 'Best First'.
Re^2: XML::Twig output with delimiter
by pankaj_it09 (Scribe) on Dec 10, 2008 at 06:17 UTC
    Yes it solved the problem to some extent but I want the result to be in a variable.

    I tried like this :

    my $content = sprintf $para->text()."\n";

    It doesn't seem to work.

      Once again... read the docs. perldoc -f sprintf. If the text of the element includes a % you won't get what you want.

      You don't need sprintf at all in this case. my $content = $para->text()."\n"; will do just fine.

      Yes it works that way.

      If there is any other way then tell me.