Insert the character '&' (ampersand) in a text or string.

1 string.amp

<string.amp />
Example

Show on screen a string with the symbol & using the function string.amp.

Copy
<xsql-script name='string_amp'>
    <body>
        <set name='a'>
            <string>
                A text with the character <string.amp /> (ampersand).
            </string>
        </set>
        <println><a /></println>
    </body>
</xsql-script>

Returns:

Copy
A text with the character & (ampersand).