Table of Contents

LINT_TO_STRING

Function name

LINT_TO_STRING

ST call

PROGRAM LINT_TO_STRING_DEMO
     VAR
     STRING1: STRING; 
     LINT1: LINT;
  END_VAR
    STRING1:=LINT_TO_STRING(LINT1);
END_PROGRAM

Description

Function converts the input numerical value to a string.

Inputs

InputType Description
IN ANY_LINTInput value

Outputs

OutputType Description
ANY_STRINGOutput value - converted to a string

Application example