XML2ASCII
Syntax
<xml2ascii-expression> := 'XML2ASCII(' <String> ')
Since
2.6.0
Return-type
String
Description
This function removes all XML or HTML markup elements from the passed string and returns the rest as string. If NULL is passed as argument, the function returns NULL.
Examples
XML2ASCII( "<p style='color: red;'>Hello <b>world</b></p>")
= "Hello world"
