w3HtmlParse

w3HtmlParse parses the substitution list into HTML text and sends results to the browser.

Syntax

call w3HtmlParse  (text , sub )  

Parameters

text

In

The unparsed text.

sub

In

The substitution matrix. Each attribute contains a separate substitution.

Example

The following lines of code...

text   = 'The title should go here -##TITLE##-'

sub    = '##TITLE##':@vm:'The title is ##NAME##'

sub<-1>= '##NAME##':@vm:'"Moby Dick"'

call w3HtmlParse( text, sub)

...produce the following output:

The title should go here -The title is "Moby Dick"-