Hallo,
ich möchte HTML Tags bereiningen hierzu muss ich eine Methode schreiben, die bestimmte Inhalte aus Tags entfernt. Ein Bsp ist:
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: justify; mso-layout-grid-align: none;">
hier will ich folgendes entfernen:
- class="MsoNormal"
- style="margin: 0cm 0cm 0pt; text-align: justify; mso-layout-grid-align: none;"
Es soll also nur noch <p> übrig bleiben.
Hierzu bin ich wie folgt vorgegeben:
Leider passiert nichts...hat hier jemand eine Idee? Danke******
ich möchte HTML Tags bereiningen hierzu muss ich eine Methode schreiben, die bestimmte Inhalte aus Tags entfernt. Ein Bsp ist:
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: justify; mso-layout-grid-align: none;">
hier will ich folgendes entfernen:
- class="MsoNormal"
- style="margin: 0cm 0cm 0pt; text-align: justify; mso-layout-grid-align: none;"
Es soll also nur noch <p> übrig bleiben.
Hierzu bin ich wie folgt vorgegeben:
Java:
public void checkHTML(String txt)
{
System.out.println("Original text: " + txt);
txt.replaceAll("style=\"*?\"", "");
txt.replaceAll("class=\"*?\"", "");
System.out.println("Replaced text: " + txt);
}
Leider passiert nichts...hat hier jemand eine Idee? Danke******