LINT_TO_DECSTR

LINT_TO_DECSTR 1:

This function converts a signed decimal number into a decimal string (base 10).

LINT_TO_DECSTR 2: Return value

Name

Type

Description

LINT_TO_DECSTR

T_MaxString

 

LINT_TO_DECSTR 3: Inputs

VAR_INPUT
    in         : LINT;
    iPrecision : INT;
END_VAR

Name

Type

Description

in

LINT

The decimal number to be converted.

iPrecision

INT

Minimum number of displayed digits. If the actual number of significant digits is less than the iPrecision parameter, the resulting string is filled with zeros from the left. If the number of significant digits is greater than the iPrecision parameter, the resulting string is not truncated! If the iPrecision parameter and the in parameter have the value zero, the resulting string is an empty string. For negative numbers, the negative sign will appear in the resulting string.

Example:

PROGRAM MAIN
VAR
    s1   : STRING;
    s2   : STRING;
    s3   : STRING;
    s4   : STRING;
    iCnt : LINT;
END_VAR
iCnt := -1234;
s1   := LINT_TO_DECSTR( iCnt, 1 );
s2   := LINT_TO_DECSTR( iCnt, 10 );
iCnt := 0;
s3   := LINT_TO_DECSTR( iCnt, 0 );
iCnt := 1234;
s4   := LINT_TO_DECSTR( iCnt, 10 );

The result:

s1 = '-1234’

s2 = '-0000001234'

s3 = ''

s4 = '0000001234'

Requirements

Development environment

Target platform

PLC libraries to be integrated (category group)

TwinCAT v3.1.0

PC or CX (x86, x64, Arm®)

Tc2_Utilities (System)