Insert the characterr < (less than) in a text or string.

1 string.lt

<string.lt />

Exceptions

requires 3 arguments, received: ...

The 3 entry parameters has not been specified.

Example

Show on screen a string with the symbol < using the function string.lt.

Copy
<xsql-script name='string_lt'>
    <body>
        <set name='a'>
            <string>
                A text with the character <string.lt /> (less than).
            </string>
        </set>
        <println><a /></println>
    </body>
</xsql-script>

Returns:

Copy
A text with the character < (less than).