prashantktyagi has asked for the wisdom of the Perl Monks concerning the following question:
I am able to read patch_name,patch_id ,patch_desc but not target_version how ever these all are part of one tag.my $patch_node = ($self->get_control->get_root->findnodes( '//package/ +patch' ))[0]; my $patch_desc = $patch_node->findvalue('description'); my $patch_name = $patch_node->findvalue('@name'); my $patch_id = $patch_node->findvalue('@patchcode' ); my $target_version = $patch_node->findvalue('@target_version' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Why my code working...why my code is not working...
by NetWallah (Canon) on Nov 12, 2012 at 06:48 UTC | |
|
Re: Why my code working...why my code is not working...
by Old_Gray_Bear (Bishop) on Nov 12, 2012 at 16:17 UTC | |
|
Re: Why my code working...why my code is not working...
by marto (Cardinal) on Nov 12, 2012 at 10:39 UTC | |
|
Re: Why my code working...why my code is not working...
by Anonymous Monk on Nov 12, 2012 at 10:35 UTC | |
|
Re: Why my code working...why my code is not working...
by prashantktyagi (Scribe) on Nov 15, 2012 at 10:04 UTC |