w3TranslateStringOut

w3TranslateStringOut converts "special" HTML characters into codes. For example "<" is translated into "&lt;"

The special characters are <>&".  Characters whose ASCII values are greater than 125, or less than 32, are translated into the format &#xx; , where xx is the ASCII value of the character.

Syntax

call w3TranslateStringOut  (InStr , OutStr )  

Parameters

InStr

In

The string to translate.

OutStr

Out

The string after the translation.