$w. Format
Writes standard character data.
| Category: |
Character |
| Alignment: |
Left |
| Alias: |
$Fw.
|
Syntax
Arguments
w
specifies the width
of the output field.
| Default |
1 if the length of the variable is undefined; otherwise,
the length of the variable.
|
| Range |
1–32767 |
Comparisons
The $
w.
format and the $CHAR
w. format
are identical, and they do not trim leading blanks.
Example
|
|
|
|
|
|
|
|
|
select put('#Cary',$f5.);
|
|
select put(Carolina,$5.);
|
|
| 1The character # represents
a blank space.
|