Given a numerical value returns its corresponding character.
1 character.charValue
<character.charValue>
<data /> !
</character.charValue>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Edata | Integer |
Returns | |
---|---|
Type | Description |
Character | Corresponding character to a numerical value. |
Exceptions
requires 1 argument, received [...]
Missing a parameter.
unparseable number[...]
Unparseable number.
Example
Get a character from a numerical value.
Copy
<xsql-script name='character.charValue_sample1'> <body> <println> <character.charValue>45</character.charValue> </println> <!-- Muestra (-) --> <println> <character.charValue>109</character.charValue> </println> <!-- Muestra (m) --> </body> </xsql-script>
Example
The result will be:
Copy
- m