Insert the character > (greater than) in a text or string.
1 string.gt
<string.gt />
Returns | |
---|---|
Type | Description |
string | ">" |
Exceptions
requires 1 arguments, received: ...
The entry parameter has not been specified.
Example
Show on screen a string with the symbol > using the function string.gt.
Copy
<xsql-script name='string_gt'> <body> <set name='a'> <string> A text with the character <string.gt /> (greater than). </string> </set> <println><a /></println> </body> </xsql-script>
Returns:
Copy
A text with the character > (greater than).