i write a simple Rss Feed reader now i have this problem, in the item description i have the text but this text have this caracters <br/>
for example
“my dog
<br/>
为黑体,他<br/>
停留在表格上:“
现在,我已赢得从这辆车车上穿透的光线。
private static String IsMatch(String s, String pattern) {
try {
Pattern patt = Pattern.compile(pattern);
Matcher matcher = patt.matcher(s);
return matcher.group();
} catch (RuntimeException e) {
return "Error";
} }
以及
String regex ="[<br/>]";
theString2=IsMatch(theString,regex);
AppLog.logString(theString2);
...... 但这种方法总是不可逆转的。 谁能告诉我问题是什么?
best regads Antonio