我在响应中有CDATA的xml webservice响应:
<![CDATA[
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ReturnCode>0</ReturnCode>
<ReturnDescription>SUCCESS</ReturnDescription>
</Response>]]>
我需要删除开头<!CDATA[
和结尾]]>
之间的内容,并仅保留xml。
我已经在许多论坛上搜索了一种解决方案,但找不到有用的答案。