Skip to main content
Skip table of contents

toPlainText

Versionshinweise

17.2

Code

GROOVY
String StringUtils.toPlainText(String htmlText)

Beschreibung

Wandelt den angegebenen HTML-Text in Plain-Text um.

Parameter

  • text - Der HTML-Text, der umgewandelt werden soll.

Rückgabe
Gibt den umgewandelten Plain-Text zurück.

Beispiele

GROOVY
String meinHtmlText = "<html><head><title>Example</title></head><body><p><b>Hello World!</b></p></body></html>";
String plainText = StringUtils.toPlainText(meinHtmlText);
// => "Hello World!";
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.