They are listed in the Format Specifier Syntax section of the LabVIEW help manual. Or you can use the LabVIEW 'Format into String' function to build the necessary string. Simply double click on the function and to open the property dialog.
---------------
Excerpt from the manual:
Use the following conversion codes for integers:
x�Hexadecimal integer (for example, B8).
o�Octal integer (for example, 701).
b�Binary integer (for example, 1011).
d�Signed decimal integer.
u�Unsigned decimal integer.
Use the following conversion codes for floating-point numbers:
f�Floating-point number with fractional format (for example, 12.345).
e�Floating-point number in scientific notation (for example, 1.234E1).
g�LabVIEW uses f
or e depending on the exponent of the number. LabVIEW uses f if the exponent is greater than �4 or less than the precision specified. LabVIEW uses e if the exponent is less than �4 or greater than the precision specified.
p�Floating-point number in SI notation.
---------------
Christian L
authored byChristian L, CLA
Systems Engineering Manager - Automotive and Transportation
NI - Austin, TX

