Is there a good way to remove HTML from a Java string? A simple regex like
replaceAll("\\\\<.*?>", &quo
You can simply use the Android's default HTML filter
public String htmlToStringFilter(String textToFilter){ return Html.fromHtml(textToFilter).toString(); }
The above method will return the HTML filtered string for your input.