Returns the character used as decimal separator.
1 system.user.getDecimalSeparator
Release 2017.3
Tag available since version 2017.3.
<system.user.getDecimalSeparator />
Returns | |
---|---|
Type | Description |
String | Decimal separator character. |
Example
Obtains the decimal separator character of the user (which is executing the XSQLScript):
Copy
<xsql-script name='system_user_getdecimalseparator_sample'> <body> <println> <system.user.getDecimalSeparator /> </println> </body> </xsql-script>
.