How to parse XML for <![CDATA[]]>

前端 未结 4 1711
我在风中等你
我在风中等你 2020-12-06 06:50

How to parse a XML having data included in how can we parse the xml and get the data included in CDATA ???

4条回答
  •  悲哀的现实
    2020-12-06 07:44

    CDATA just says that the included data should not be escaped. So, just take the tag text. XML parser should return the clear data without CDATA.

提交回复
热议问题