Frage im Vorstellungsgespräch bei Wallet Hub

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

Antworten zu Vorstellungsgespräch

Anonym

10. Nov. 2017

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

Anonym

7. Apr. 2018

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