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


in reply to XML::Twig Eating Up Data

Hi anshumangoyal,

I have had minimal experience with xml, however, do any of these questions help locate the issue;

I hope these prompts can help towards debugging.

My hunch, is that the match cuts off after the first element as you are using the forward slash as your match delimiter. By using a different delimiter for the matching may resolve this because paths are delimited by the forward slashes the same as are used to delimit matches.

Replies are listed 'Best First'.
Re^2: XML::Twig Eating Up Data
by anshumangoyal (Scribe) on Nov 07, 2012 at 05:38 UTC
    Exactly this was the error. Removed it and it was resolved. Thanks a lot.