DWORD_TO_OCTSTR

DWORD_TO_OCTSTR 1:

This function converts a decimal number into an octal string (base 8).

DWORD_TO_OCTSTR 2: Return value

Name

Type

Description

DWORD_TO_OCTSTR

T_MaxString

 

DWORD_TO_OCTSTR 3: Inputs

VAR_INPUT
    in         : DWORD;
    iPrecision : INT;
END_VAR

Name

Type

Description

in

DWORD

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.

Example:

PROGRAM MAIN
VAR
    s1   : STRING;
    s2   : STRING;
    s3   : STRING;
    nCnt : WORD;
END_VAR
nCnt := 43981;
s1   := DWORD_TO_OCTSTR( nCnt, 1 );
s2   := DWORD_TO_OCTSTR( nCnt, 10 );
nCnt := 0;
s3   := DWORD_TO_OCTSTR( nCnt, 0 );

The result:

s1 = '125715'

s2 = '0000125715'

s3 = ''

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)