String Integer to String

Transforms an integer into a Text.

Settings

in

Input Data flow(s).

out

Output string(s).

format

Can be used to specify a format for the output string.

Examples with an input number = 1234

  • prefix string : MYPREFIX%d ("MYPREFIX1234")
  • 7 width Padded : %7d (" 1234")
  • 7 width left justified : %-7d ("1234 ")
  • 6 length 0 padded : %.6d ("001234")
  • 8 width, 6 length 0 padded : %8.6d (" 001234")
  • Hexadecimal : %x (4D2);

See also

version 6.0.240115

Edit All Pages