Como remover tags HTML de un String
Para ello usamos REGEXP y el metodo replaceAll de la clase StringString entry = "<title>El diario de un developer</title>";
String title = entry.replaceAll("</?\\w++[^>]*+>", "");
Para ello usamos REGEXP y el metodo replaceAll de la clase StringString entry = "<title>El diario de un developer</title>";
String title = entry.replaceAll("</?\\w++[^>]*+>", "");
Gamel Digital: Como remover tags HTML de un String - Como remover tags HTML de un String