Parsing XML data stored in tag attributes #99
Unanswered
m-pastuszek
asked this question in
Q&A
Replies: 4 comments
-
Found solution in https://github.com/orchestral/parser/issues/85. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I'm back ;) I have a problem with this one. <attrs>
<a name="Producer">
<![CDATA[Company Inc.]]>
</a>
<a name="Producer_code">
<![CDATA[321321321]]>
</a>
<a name="EAN">
<![CDATA[1234567890]]>
</a>
<a name="Sku">
<![CDATA[123123123]]>
</a>
</attrs> |
Beta Was this translation helpful? Give feedback.
0 replies
-
You might understand what you're trying to do. But for everyone else, reading what you have posted doesn't explain anything. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Soo... I have XML data like this. How to parse them? <attrs>
<a name="Producer">
<![CDATA[Company Inc.]]>
</a>
<a name="Producer_code">
<![CDATA[321321321]]>
</a>
<a name="EAN">
<![CDATA[1234567890]]>
</a>
<a name="Sku">
<![CDATA[123123123]]>
</a>
</attrs> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description:
I have XML file with data stored in tag attributes. How to parse them? Do you support this type of xml data file?
Beta Was this translation helpful? Give feedback.
All reactions