BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sas_
Fluorite | Level 6

Hi i am having data but i wnat to export the data into text file but i want to give 3 delimeters ,how can i do it ,i have tested it but it was taking only one delimter.

proc export data=test outfile="/tmp/mydata/test.txt"

   dbms=dlm replace;

   delimiter='^?/';

run;

1 ACCEPTED SOLUTION

Accepted Solutions
ArtC
Rhodochrosite | Level 12

The DATA step can be used to write delimited files.  Consider this step as a starting point.

data _null_;

   set sashelp.class;

   file "c:\temp\test.txt"

         dlmstr='^?/';

   put name age sex height weight;

   run;

View solution in original post

4 REPLIES 4
ArtC
Rhodochrosite | Level 12

The DATA step can be used to write delimited files.  Consider this step as a starting point.

data _null_;

   set sashelp.class;

   file "c:\temp\test.txt"

         dlmstr='^?/';

   put name age sex height weight;

   run;

sas_
Fluorite | Level 6

Thqs

sas_
Fluorite | Level 6

but i am not getting the variable names if i wnat the variable names what should i do i have used put also.

ArtC
Rhodochrosite | Level 12

This will add the variable names.

data _null_;

   set sashelp.class;

   file "c:\temp\test.txt"

         dlmstr='^?/';

   if _n_=1 then put 'name^?/age^?/sex^?/height^?/weight';

   put name age sex height weight;

   run;

There are DATA step solutions that do not require you to know the variable names, but they are more complicated.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1222 views
  • 0 likes
  • 2 in conversation