BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

A colleague suggested me to use the option dlm='|' to force to read the complete line.

But I wonder if there is a better option or combined options to do that .

 

Here's the code :

 

filename filelist pipe "find /folder1/sasdata/TestActuariat/ -type f ";
data fileslisting2;
length text $1000.;
infile filelist dlm='|';
input text;
run;

Here's an observation of fileslisting2;

Does the option dlm='|' is a good one or can we do better?

 

/folder1/sasdata/TestActuariat/Conversion Classic/Cycle3/gc/habi/gc_res_prop_jul2018.dpf.00010f97.0.1.spds9

 

Without the good option we get:

 

/folder1/sasdata/TestActuariat/Conversion

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASJedi
Ammonite | Level 13

If you want to get the entire content of the input buffer into the text variable, why not just use an assignment statement, like this:

filename filelist pipe "find /folder1/sasdata/TestActuariat/ -type f ";
data fileslisting2;
   length text $1000.;
   infile filelist;
   input;
   text=_infile_;
run;

This technique will capture all of the text, even if it contains a pipe character (|). 

Check out my Jedi SAS Tricks for SAS Users

View solution in original post

1 REPLY 1
SASJedi
Ammonite | Level 13

If you want to get the entire content of the input buffer into the text variable, why not just use an assignment statement, like this:

filename filelist pipe "find /folder1/sasdata/TestActuariat/ -type f ";
data fileslisting2;
   length text $1000.;
   infile filelist;
   input;
   text=_infile_;
run;

This technique will capture all of the text, even if it contains a pipe character (|). 

Check out my Jedi SAS Tricks for SAS Users

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1 reply
  • 735 views
  • 1 like
  • 2 in conversation