DatasourceASCIIThousandSeparator
This TurboIntegrator local variable sets the thousands separator to be used in any conversion of a string to a number or a number to a string.
If you set this variable you must also set the DatasourceASCIIDecimalSeparator variable.
The character specified must be a standard ASCII printable character, with a decimal value between 33 and 127 inclusive.
Syntax
DatasourceASCIIThousandSeparator='Char';
or
DatasourceASCIIThousandSeparator=Char(xx);
Argument |
Description |
---|---|
Char |
The ASCII character to be used as a separator. The character can be specified as a character enclosed in single quotes, or as an ASCII Char decimal code without quotes. |
Either of the following examples sets the period character (.) as the thousands separator.
DatasourceASCIIThousandSeparator='.';
DatasourceASCIIThousandSeparator=Char(46);