I have a Perl program to parse the xml file,
Here I have declared the final arrayref $ups_able_info as global.
Instead of this I want to make it local to the sub parsexml() and pass the same to the twig handle 'parse_table_info'.
If I try to pass the arryref to the twig handle getting the ERROR: 'Global symbol "$ups_table_info" requires explicit package'.
Can any one help me on this
my ($ups_able_info) = ([]);
&parseXml($xmlfile);
sub parseXml{
my $twig1 = new XML::Twig( twig_handlers => { 'ups:TABLE_INFO/ups:fiel
+d' => \&parse_table_info} );
}
### twig handler to parse columns.
sub parse_table_info {
my( $twig, $table_info)= @_;
my $table_column = {};
$table_column->{$table_info->first_child_text('ups:tag')} = $
+table_info->first_child_text('ups:ui_name');
push(@{$ups_table_info}, $table_column);
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|