HtmlGetprintabletext()

Returns all the printable text from the HTML, devoid of all HTML tags, but maintaining any blank lines

Usage

STRING = HtmlGetprintabletext( html )
Argument Summary
html html block

Calling

Supports named-parameter calling allowing you to use the function like:

HtmlGetprintabletext(
   html=?
);

Supports passing parameters as a structure using ArgumentCollection:

HtmlGetprintabletext( ArgumentCollection={
   html : ?
} );