Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 527555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:53:43+00:00 2026-05-13T08:53:43+00:00

Why do I get my string two times in the output? #!/usr/bin/perl use warnings;

  • 0

Why do I get my string two times in the output?

#!/usr/bin/perl
use warnings;
use strict;

use XML::Twig;


my $string = '<cd_catalogue><title>Hello, World!</title></cd_catalogue>';

my $t= XML::Twig->new(  twig_handlers   => { cd_catalogue => \&cd_catalogue, },
            pretty_print => 'indented', 
);

$t->parse( $string );


sub cd_catalogue {
    my( $t, $cd_catalogue ) = @_;
    $cd_catalogue->flush;
}


# Output:
#<cd_catalogue>
#  <title>Hello, World!</title>
#</cd_catalogue>
#<cd_catalogue>
#  <title>Hello, World!</title>
#</cd_catalogue>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T08:53:44+00:00Added an answer on May 13, 2026 at 8:53 am

    Changing your sub to use print and purge instead of flush gets around problem:

    sub cd_catalogue {
        my( $t, $cd_catalogue ) = @_;
        $cd_catalogue->print;
        $cd_catalogue->purge;
    }
    

    The flush is getting confused because of the simplicity of your example because cd_catalogue is root node. If you change your data to something like this:

    my $string = '
        <cds>
            <cd_catalogue><title>Hello, World!</title></cd_catalogue>
        </cds>';
    

    or if you changed your twig_handler to look for title:

    twig_handlers    => { title => \&cd_catalogue }
    

    then you will find that $cd_catalogue->flush now works as expected with your $string.

    /I3az/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two classes class A { public string something { get; set; }
I've got two List<Name> s: public class Name { public string NameText {get;set;} public
I cannot get a two-way bind in WPF to work. I have a string
I'm currently trying to convert xml values that represents two times. example: <from>960</from> <to>975</to>
I have a code like this: #!/usr/bin/env bash test_this(){ export ABC=ABC echo some output
I get two strings formated like (Brazilian Format): DD/MM/YYYY, I need to compare both.
I'm trying to get a case-insensitive search with two strings in JavaScript working. Normally
I'm already thinking about to start using simple GET string. Or I'm not so
I get a String data from Cursor, but I don't know how to convert
private string? typeOfContract { get { return (string?)ViewState[typeOfContract]; } set { ViewState[typeOfContract] = value;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.