我需要在&nbps
中替换TextView
。我可以简单地使用String.replace()
,但可能有更好的解决方案?
答案 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 ");