R
Rookie
I have the next challenge.
I read in an xml file and read two relevant attributes from an element.
So far so good.
But after reading the xml file i want to create a report with the values of
the attributes and the occurences (create a summary).
for example:
Attribute Value Occurence
--------- ------ -----------
name John 10
Jessica 3
Abby 15
. . .
state Alabama 5
Georgia 15
Montana 30
. . .
I suppose i need to to use some two dimensional collection, but which one
and how to deal with the occurences.
(add, replace, updtate items ??)
Thanks in advance,
Rookie
I read in an xml file and read two relevant attributes from an element.
So far so good.
But after reading the xml file i want to create a report with the values of
the attributes and the occurences (create a summary).
for example:
Attribute Value Occurence
--------- ------ -----------
name John 10
Jessica 3
Abby 15
. . .
state Alabama 5
Georgia 15
Montana 30
. . .
I suppose i need to to use some two dimensional collection, but which one
and how to deal with the occurences.
(add, replace, updtate items ??)
Thanks in advance,
Rookie