如何从TextView中删除

时间:2012-12-12 09:17:51

标签: android

我需要在&nbps中替换TextView。我可以简单地使用String.replace(),但可能有更好的解决方案?

2 个答案:

答案 0 :(得分:2)

尝试使用Pattern.compile:

Pattern p = Pattern.compile("&nbps");
String tempstr = "I love &nbps  &nbps.";

Matcher matcher = p.matcher(tempstr);
String tmp = matcher.replaceAll("Android");

你可以看到关于String.replace和matcher.replace

的性能的这篇文章

String replaceAll() vs. Matcher replaceAll() (Performance differences)

答案 1 :(得分:0)

尝试使用此功能:

 Html.fromHtml("Your Text ");