Help for this page

Select Code to Download


  1. or download this
    <exec>
       <tc id=001/>
       <tc id=002/>
       <tc id=003/>
    </exec>
    
  2. or download this
    my $xmlfile = new XML::Simple (Outputfile => $conf,
                         ForceArray => 1,
                                    RootName=>'exec');
    my $xml = $xmlfile->XMLin($conf);
    
  3. or download this
    foreach my $tc (@{$xml->{tc}}) {
        print "$tc";
    }