Reads unsigned packed decimal data in IBM mainframe format.
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 s370fpdu3.;
Data Line 1
|
Result
|
---|---|
----+----1 |
|
12345F |
12345 |
1The data line is a hexadecimal representation of a binary number that is stored in packed decimal form. Each two hexadecimal characters correspond to one byte of binary data, and each byte corresponds to one column of the input field. |