XML::XML2JSON "0" Element

Posted by Kevin C on Stack Overflow See other posts from Stack Overflow or by Kevin C
Published on 2010-05-07T17:44:56Z Indexed on 2010/05/07 17:48 UTC
Read the original article Hit count: 259

Filed under:
|
|
|
|

I'm using XML::XML2JSON in Perl to convert JSON data to XML, I am passing through the following data (snippet):

{"question":{"isrequired":{"$t":"0"}}}

and when I use the XML:XML2JSON->json2xml function to convert the JSON data into XML, I get the following (snippet):

<isrequired/>

I need to retain the "0" element in the "isrequired" tag, because at times, I will have empty JSON elements, and need the empty XML tag. I think the documentation is a bit vague (either that, or I don't understand it), but is this possible to do with this module?

I would appreciate the help. Thanks.

© Stack Overflow or respective owner

Related posts about perl

Related posts about JSON