Pergunta de entrevista da empresa Wallet Hub

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

Respostas da entrevista

Sigiloso

10 de nov. de 2017

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

Sigiloso

7 de abr. de 2018

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