tags:

views:

48

answers:

1

Respected All, I am newly working on Android technology. I have to read Xml file in which there are html tags such as <b>() so I have to remove these tags before display on screen. If you know any way to remove these before display please help me.

                                                                 Thank You
                                                                 (Vikram Kadam)        
+1  A: 

if you need to strip all the html tags you use the String method replaceAll("<(.|\n)*?>","");

Noya