w3DumpString

w3DumpString prints the decimal and ASCII representation of each character in the passed-in string to the screen.

The output is formatted as follows:

line 1: Decimal value for each character

line 2: ASCII value for each character, unprintable characters are displayed with a leading "\" then the decimal value.

Example: the string "the cat\n"

line 1:116104101 32 99 97116 10

line 2: t h e c a t\10

Syntax  

call w3DumpString  (string )  

Parameters

string

In

The string to be displayed.