I'm trying to parse an xml file using XML::Simple library. In a designed way a line like:

<opt one="1">Text</opt>

well be parsed to

{ 'one' => 1, 'content' => 'Text' }

is it possible to get

'opt' => 'Text'

instead?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Try the NoAttr option in XMLin(): XML::Simple

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.