LD Real_Str
STR_ROUND Pos, Rounded_Str
STR_ROUND(Real_Str, Pos, Rounded_Str);
Parameter
|
Type
|
Comment
|
---|---|---|
Real_Str
|
Character string containing the real number.
Example: ’-1.1354942e-30’
|
|
Pos
|
Position from which the rounding off is performed. The position is calculated from the decimal separator, and the calculation is inclusive of the separator.
Example: 2
|
Parameter
|
Type
|
Comment
|
---|---|---|
Rounded_Str
|
Result of truncation.
Example: with the data examples of the previous table, the result is the following ' -1.1000000e-30'
|