I have a file which has
<Doc>
<Text>
....
</Text>
</Doc>
<Doc>
<Text>
</Text>
</Doc>
How do I extract only the <text> elements, process them and then extract the next text element efficiently?
I do not know how many I have in a file?
|
|
|||
|
|
|
XML::Simple can do this easily:
|
||||||||
|
|
|
Take a look at XML::Simple. It makes looking through XML as simple as walking a hash. |
|||
|
|
|
|
Using a Perl XML parsing module would save you a bit of work: |
|||
|
|
|
|
|
||
|
|