Indicates that data lines that contain semicolons follow.
Valid: |
in a DATA step
|
Category: |
File-handling
|
Type: |
Declarative
|
Aliases: |
CARDS4, LINES4
|
Use
the DATALINES4 statement together with an INPUT statement to read data that
contain semicolons that you enter directly in the program.
The DATALINES4 statement is the last statement
in the DATA step and immediately precedes the first data line. Follow the
data lines with four consecutive semicolons that are located in columns 1
through 4.
Use the DATALINES4
statement
when data contain semicolons. If your data do not contain semicolons, use
the DATALINES statement.
In this example, SAS reads data lines that contain internal
semicolons until it encounters a line of four semicolons. Execution continues
with the rest of the program.
data biblio;
input number citation $50.;
datalines4;
KIRK, 1988
2 LIN ET AL., 1995; BRADY, 1993
3 BERG, 1990; ROA, 1994; WILLIAMS, 1992
;;;;
Copyright © 2011 by SAS Institute Inc., Cary, NC, USA. All rights reserved.