w3TranslateStringOut converts "special" HTML characters into codes. For example "<" is translated into "<"
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.
call w3TranslateStringOut (InStr , OutStr )
|
InStr |
In |
The string to translate. |
|
OutStr |
Out |
The string after the translation. |