删除HTML标记

时间:2015-03-09 11:18:11

标签: android html string

我想删除我的android中的标记,该标记来自Web响应。我不希望在Html.fromHtml中使用setText(),因为我不希望文本显示在下一行。任何人都可以建议我一个想法吗?

2 个答案:

答案 0 :(得分:0)

您可以使用replaceAll()功能

例如:

html.replaceAll("&","");//remove ampersands

答案 1 :(得分:0)

您可以对trim返回的字符串使用Html.fromHtml,以避免在文本之前和之后换行。

来源:How to remove newlines from beginning and end of a string (Java)?