in reply to xml parsing without using cpan modules
I have done this type of thing in the past for very simple data extraction, the method being;
1.Read the file line by line.
2.Use regex to find tags.
3.Use tags to be the keys and the values to be the values.
But XML::Simple is much better as it is so much more powerful, doing things like integrity checks etc. To replicate all its features would be a sizeable piece of work.
| A reply falls below the community's threshold of quality. You may see it by logging in. |