Converts character data to octal representation.
Category: | Character |
Alignment: | Left |
specifies the width of the output field.
Default | The default width is calculated based on the length of the variable to be printed. |
Range | 1–32767 |
Tip | Because each character value generates three octal characters, increase the value of w by three times the length of the character value. |
Statements
|
Results
|
---|---|
|
----+----1----+----2 |
select put ('art', $octal15.); |
141162164 |
select put ('rice', $octal15.); |
162151143145 |
select put ('bank', $octal15.); |
142141156153 |