in reply to iterating through XML attributes using MSXML4.0?
This is an (educated) guess, but as there are no other replies I thought it worth mentioning...
foreach my $Event (in $Events) { foreach my $Attr (in $Event->Attributes) { print $Attr->{Name}, ' = ', $Attr->{Value}; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: iterating through XML attributes using MSXML4.0?
by Anonymous Monk on Oct 26, 2003 at 19:23 UTC |