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

I wish to use the below code to import txt files with one of the following delimiters : '09'x   '7E'x   '2C'x

This works fine if I use e.g. %let mydelim='09'x; directly in my code.

But I want to assign one of the delimiters using SAS Prompts and it wont work with hex values. 

Any suggestions?

 

proc import	
	datafile=&in_file. 
	out=outfile 
	dbms=dlm 
	replace; 
	delimiter=&mydelim.; 
run; 
1 ACCEPTED SOLUTION

Accepted Solutions
simmwa
Fluorite | Level 6

Below seems to work with double quotes (not sure why single quotes fails) with the Prompt setting mydelim to either 09, 7E or 2C 

proc import	
	datafile=&in_file. 
	out=outfile 
	dbms=dlm 
	replace; 
	delimiter="&mydelim."x; 
run;

View solution in original post

2 REPLIES 2
simmwa
Fluorite | Level 6

Below seems to work with double quotes (not sure why single quotes fails) with the Prompt setting mydelim to either 09, 7E or 2C 

proc import	
	datafile=&in_file. 
	out=outfile 
	dbms=dlm 
	replace; 
	delimiter="&mydelim."x; 
run;
SASKiwi
PROC Star

Macro variables don't resolve inside single quotes, but do inside double quotes.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 615 views
  • 1 like
  • 2 in conversation