Chapter Contents |
Previous |
Next |
CARDIMAGE |
Valid in: | configuration file, SAS invocation, OPTIONS statement, Systems Options window |
Category: | Input control: Data processing |
PROC OPTIONS GROUP= | INPUTCONTROL |
Syntax | |
Syntax Description | |
Examples |
Syntax |
CARDIMAGE | NOCARDIMAGE |
Quoted strings (literal tokens) that begin on one line and end on another are treated as if they contained blanks out to column 80 of the first line. Data lines longer than 80 bytes are split into two or more 80-byte lines. Data lines are not truncated regardless of their length.
Operating Environment Information: CARDIMAGE is generally used in the OS/390 and CMS operating environments; NOCARDIMAGE is used in other operating environments.
Examples |
Consider the following DATA step:
data; x='A B'; run;
If CARDIMAGE is in effect, the variable X receives a value that consists of 78 characters: the A, 76 blanks, and the B. If NOCARDIMAGE is in effect, the variable X receives a value that consists of two characters: AB, with no intervening blanks.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.