开发者

how to replace special character in CDATA while parsing RSS Reader

hii,

this is my data coming in xml format

description

![CDATA[JON CARDINELLI says that a question mark over Morne Steyn & #8217; s goal-kicking means a question mark over his value at the 2011 World Cup. After maintaining an unbeaten record at Loftus for two years, the Bulls are in a position where they& #8217;ve suffered back-to-back defeats. While it is too early to write them off as play-off [...]]]

/description

开发者_C百科now i want to replace & #8217;

plzz reply as early as possible, i want it urgent.

thank in advance


CDATA is not parsed. You can replace it manually.

parsedString.replace(CharSequence target, CharSequence replacement);

In your case something like:

parsedString.replace("’", "’");


Instead of replace function use the following

parsedString.replaceAll("actualtext", "replacetext");

It is working for me

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜