Hi,
I need to know if it is possible to create a delimited variable length 'flat' file which requires a row delimiter other than the standard CRLF (in this case, the row delimiter is 'F3'x, i.e., ascii character 243). Not sure if it matters, but the operating system is Windows.
Consider the TERMSTR option for the FILE statement in a DATA step. Have a look at the SAS support website http://support.sas.com/ and search on the parameter for DOC and other useful references.
Scott, thank you for the suggestion. I looked up termstr in the online docs, and it says:
TERMSTR=specifies the end-of-line character for the file. Use this option to share files between the UNIX and Windows operating environments. Valid values are:
CRLF
Carriage return line feed. Use TERMSTR=CRLF to write Windows formatted files. CRLF is the default.
LF
Line feed. Use TERMSTR=LF to write UNIX formatted files.
NL
New line. Use TERMSTR=NL to write UNIX formatted files.
...it looks like it doesn't give me the option to specify the row delimiter I'm trying to use; just crlf / lf / and nl ...any other thoughts on this?