Help for this page

Select Code to Download


  1. or download this
      my $tag   = @{$tagstruct}[0];
      if ($tag =~ m!/!)
    ...
      }
      my %attrhash= %{@{$tagstruct}[1]};
      my @attrarr = @{@{$tagstruct}[2]};
    
  2. or download this
      if ($tagstruct->is_end_tag)
      {
    ...
      }
      my %attrhash= %{$tagstruct->return_attr};
      my @attrarr = @{$tagstruct->return_attrseq};