PHP has strip_tags function which Strip HTML and PHP tags from a string.
Does android have a means to escape html?
|
PHP has Does android have a means to escape html? |
||||
|
|
|
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:
This uses Android's built in Html parser to build a |
|||||||
|
|
This was already answered here: Removing HTML from a Java String |
|||||
|