Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread John Meyer
[EMAIL PROTECTED] wrote: > > Please remove me from this list! Thank you! > > RRCA > > Kindly remove yourself from this list and refrain from showing the rest of us how much of an idiot you are. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Using XML::Simple

2006-01-19 Thread Michael . Coll-Barth
Well, I just gave this email address to a SPAM list -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 19, 2006 12:59 PM To: [EMAIL PROTECTED]; beginners@perl.org Subject: Re: Using XML::Simple Please remove me from this list! Thank you

Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread RangerRickCA
Please remove me from this list! Thank you! RRCA

Re: Using XML::Simple

2006-01-19 Thread RangerRickCA
Please remove me from this list! Thank you! RRCA

Re: Using XML::Simple

2006-01-19 Thread RangerRickCA
Please remove me from this list! Thank you! RRCA

Re: Using XML::Simple

2006-01-19 Thread Bjorn Van Blanckenberg
I had to use an combination of GroupTags and then ValueAttr my $ref = XMLin($jdf,GroupTags => { LayerList => 'LayerDetails' }, ValueAttr => [ LayerList => 'Name' ] ); thanks On 19-jan-06, at 12:43, John Doe wrote: Bjorn Van Blanckenberg am Donnerstag, 19. Januar 2006 09.33: I have some el

Re: Using XML::Simple [SORRY - correction]

2006-01-19 Thread John Doe
John Doe am Donnerstag, 19. Januar 2006 12.43: > $VAR1->{LayerList}->{LayerDetails}= >[ map {%$_} @{$VAR1->{LayerList}->{LayerDetails}} ]; This should be: $VAR1->{LayerList}->{LayerDetails}= [ map {values %$_} @{$VAR1->{LayerList}->{LayerDetails}} ]; (The 'values' omits the repeated 'Name

Re: Using XML::Simple

2006-01-19 Thread John Doe
Bjorn Van Blanckenberg am Donnerstag, 19. Januar 2006 09.33: > I have some elements in my xml that are empty but have attributes. > I would like that I can group the element in function of Attribute Name. > > Status="Available"> > > > > >