Insert the character # to indicate visually which it is a number.

1 string.number

<string.number />

Exceptions

requires 1 arguments, received: ...

The entry parameter has been specified.

Example

Shows on screen a number preceded by the character #.

Copy
<xsql-script name='string_number'>
    <body>
        <set name='a'>
            <string>
                String <string.number />12345.
            </string>
        </set>
        <println><a /></println>
    </body>
</xsql-script>

Returns:

Copy
String #12345.