Format Statements

The primary format file command is the format() statement. The general goal for format files is to generate displayable output for reports. And the format statement, which contains the format directives and the definition of the data to be formatted, is the primary tool for formatting the output.

The general structure is:

format(format_string, argument_list) where:

The following formatting options must appear in the format statement, in the order that they appear below.

Format Property What it does
% (required) Starts a character sequence that formats a value
flags (optional) - left justifies the value
+ inserts the appropriate sign: + or - before the value
(space) inserts a blank space before a positive value
width (optional) Sets the minimum size (number of characters) of the field
prec (optional) Sets the minimum number of digits to display, for integers, or the number of positions after the decimal point, for floating point values
data type (required) d = format as an integer
f = format as a floating point value
s = format as a string
\% or %% Inserts a percent sign
\n Forces a new line
\t Inserts a horizontal tab
\\ Inserts a backslash
\" Inserts a double quotation mark
\' Inserts a single quote mark

Format Statement Example

The following is an example of a format statement:

format ("%-0.3f dia.", tl_dia);

What this format statement does:

Related Topics

Customizing Format Files

Format Language

Procedure Types

Data Tags and Section Numbers

Section Numbers

About Reports

Customizing SmartCAM Reports