Reads unsigned packed decimal data.
Category: | Numeric |
Interaction: | List input is incompatible with binary input when this informat is specified in an INFORMAT= statement or an ATTRIB= statement using the INFORMAT= argument. SAS issues a warning and uses formatted input to read the data. |
input @1 x pk3.;
Data Line 1
|
Result
|
---|---|
----+----1 |
|
001234 |
1234 |
1The data line is a hexadecimal representation of a binary number stored in unsigned packed decimal form. Each byte occupies one column of the input field. |