http://www.perlmonks.org?node_id=178217

amir has asked for the wisdom of the Perl Monks concerning the following question:

I am relatively new to XML, and want to parse an XML file generated (exported) by MS Access:
<ItemList> <DlrItemNum>1</DlrItemNum> <Title>Table</Title> <Dimensions>3.56 x 5.18m</Dimensions> <Width>3.56</Width> <Length>5.18</Length> <Circa>Early 20th Century</Circa> <Description>A wonderful table.</Description> <Origin>Canada</Origin> <Category1>General</Category1> <Category2>Old Products</Category2> </ItemList>
Which of the Perl XML modules should I use? The above XML structure is repeated for about 500 other products, would XML::Simple suffice? Any bits of code would be appreciated. :)