Übersicht Formatting Value display


Formatting is used to format the display of numbers and text. All specifications from the C programming language (for example printf) are supported. Only the most common ones are described in the following table:


%d
signed decimal
%u
unsigned decimal
%x
Hexadecimal number lower case letters, %X upper case letters
%f
Floating point figure. The number of decimal places can be defined with %.2f, for example
%s
String

Tips: