Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: TWig handler generation

by nico38100 (Novice)
on Feb 01, 2019 at 16:52 UTC ( [id://1229246]=note: print w/replies, xml ) Need Help??


in reply to Re: TWig handler generation
in thread TWig handler generation

Hello holli Thanks for your email, I tried what you post but it doesn't seem to work. Here my code instead of having *Data I am parsing a file . Here the code
@elements = split('-', $elements_to_treat); if ($subject[0] eq 'delete_node'){ print "Delete Node ".$element."\n " if ($dbgFlag == 1); &delete_node(@elements,$file_to_read); } sub delete_node { #--------------------------------------------------------------------- +--------- my ($elements,$file_to_read) = @_; my $del_handler = sub { $_->delete()}; my @all_element = @{$elements}; my $handlers = {map {$_ => $del_handler} @all_element}; my $twig = new XML::Twig(twig_handlers => $handlers); $twig->parsefile($file_to_read); }

And here the results of my parsing which is ending in errror

Line of configuration file: delete_node:{node1-node2-node3-node4} Element of configuration to treat: 'node1-node2-node3-node4' Delete Node Couldn't open node1: No such file or directory at C:\Users\test\Documents\

it seems it's created a file but I don't understand why, if you have an idea ? Many Thanks

Replies are listed 'Best First'.
Re^3: TWig handler generation
by holli (Abbot) on Feb 01, 2019 at 17:01 UTC
    You are calling your sub with a an array as "first argument": &delete_node(@elements,$file_to_read);
    But in your sub you expect an arrayref: my ($elements,$file_to_read) = @_;
    You need to pass your data in as a reference. Also, don't call subs with "&". And if your learning material teaches you to, throw it away.
    delete_node(\@elements,$file_to_read);

    See if that fixes it.


    holli

    You can lead your users to water, but alas, you cannot drown them.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1229246]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (6)
As of 2024-04-23 14:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found