Sollicitatievraag bij Wallet Hub

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

Antwoorden op sollicitatievragen

Anoniem

10 nov 2017

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

Anoniem

7 apr 2018

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