Valid in: | in a DATA step |
UNIX specifics: | valid values for encoding-value, file-specification, and host-options |
See: | INFILE Statement in SAS Statements: Reference |
CR | Carriage return. Use TERMSTR=CR to read files formatted by an Apple Macintosh. |
CRLF | Carriage return line feed. Use CRLF to read files formatted by a PC. |
LF | Line feed. This parameter is used to read files formatted by UNIX. LF is the default. |
D | default format (same as variable). |
F | fixed format. That is, each record has the same length. |
N | binary format. The file consists of a stream of bytes with no record boundaries. If you do not specify the LRECL option, then, by default, SAS reads 256 bytes at a time from the file. |
P | print format. |
V | variable format. Each record ends with a newline character. |
S370V | variable S370 record format (V). |
S370VB | variable block S370 record format (VB). |
S370VBS | variable block with spanned records S370 record format (VBS). |