Pregunta de entrevista de Wallet Hub

Write the Java code to remove all HTML tags from a string.

Respuestas de entrevistas

Anónimo

10 nov 2017

public static String removeHtmlTags(Strign s){ string str = s.replaceAll("", ""); return str; }

Anónimo

7 abr 2018

String removeHtmlTags(String s){ return s.replaceAll("]>", ""); }