remove html tag in android
I have follows below XML feed: <Description> <p>Touch, tap, flip, slide! You don't just read Books, you experience it.</p> </Description> Here I have to display the description like Touch,tap,flip,slide! You don 39.just read the Books, you experience it. Here I have handled the parser like: public static String removeHTML(String htmlString) { // Remove HTML tag from java String String noHTMLString = htmlString.replaceAll("\\<.*?\\>", ""); // Remove Carriage return from java String noHTMLString = noHTMLString.replaceAll("\r", "<br/>"); noHTMLString = noHTMLString.replaceAll("<([bip])>.*?</\1>",