PHP has strip_tags function which Strip HTML and PHP tags from a string.

Does android have a means to escape html?

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

The solutions in the answer linked to by @sparkymat generally require either regex - which is an error-prone approach - or installing a third-party library such as jsoup or jericho. A better solution on Android devices is just to make use of the Html.fromHtml() function:

public String stipHtml(String html) {
    return Html.fromHtml(html).toString();
}

This uses Android's built in Html parser to build a Spanned representation of the input html without any html tags. The "Span" markup is then stripped by converting the output back into a string.

link|improve this answer
This solution is superior. – Bjorn Tipling Dec 7 '11 at 1:32
Also please note Html.fromHtml(String) return an extended class of CharSequence. So you can use it directly with methods accepting CharSequence parameters, without calling toString(). Thanks Nick for great answer :-) – hai bison Mar 6 at 6:48
feedback

This was already answered here: Removing HTML from a Java String

link|improve this answer
3  
@Nick Street's answer is better for android. – Bjorn Tipling Dec 7 '11 at 1:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.