S
Steven M. O'Neill
I have an xml structure like this:
<Meta name="fieldAttributes">
<MetaString name="name">SUB_PHONE</MetaString>
<MetaString name="value">999999999</MetaString>
</Meta>
<Meta name="fieldAttributes">
<MetaString name="name">SUB_NAME</MetaString>
<MetaString name="value">XML PLUS</MetaString>
</Meta>
I'm trying to parse it into a perl hash using XML::Simple
such that I can access data like:
print [something]->{SUB_PHONE} ;
and get back "9999999999";
(and likewise with the SUB_NAME, etc.)
Anyone have an idea on how to get th
(Not sure what this process is called, so I can't search Google
effectively -- any clue would be super.)
<Meta name="fieldAttributes">
<MetaString name="name">SUB_PHONE</MetaString>
<MetaString name="value">999999999</MetaString>
</Meta>
<Meta name="fieldAttributes">
<MetaString name="name">SUB_NAME</MetaString>
<MetaString name="value">XML PLUS</MetaString>
</Meta>
I'm trying to parse it into a perl hash using XML::Simple
such that I can access data like:
print [something]->{SUB_PHONE} ;
and get back "9999999999";
(and likewise with the SUB_NAME, etc.)
Anyone have an idea on how to get th
(Not sure what this process is called, so I can't search Google
effectively -- any clue would be super.)