Question d’entretien chez Wallet Hub

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

Réponses aux questions d'entretien

Utilisateur anonyme

10 nov. 2017

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

Utilisateur anonyme

7 avr. 2018

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