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

Please considering following two statements. 2nd data step returns correct index function result but 1st one failed. Any sugguestion to make index function work with %let statement? Many thanks.

%let num=%sysfunc(index('/abc/cde/dev/data/ods','/data'));
%put #

data _null_;
num=index('/abc/cde/dev/data/ods','/data');
put num=;
run;

L

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Try this:

%let num=%index(/abc/cde/dev/data/ods,/data);

%put #

The macro processor generally doesn't use the quotes to deal with strings.

Also there are several MACRO language specific string functions you should use instead of working around the differences when using %sysfunc such as %index, %scan, %substr, %trim and variations such as %Kscan %qkscan,%ksubstr, %ktrim

View solution in original post

4 REPLIES 4
ballardw
Super User

Try this:

%let num=%index(/abc/cde/dev/data/ods,/data);

%put #

The macro processor generally doesn't use the quotes to deal with strings.

Also there are several MACRO language specific string functions you should use instead of working around the differences when using %sysfunc such as %index, %scan, %substr, %trim and variations such as %Kscan %qkscan,%ksubstr, %ktrim

jay_q
Calcite | Level 5

Thanks for all your reply. It looks like quotes are not necessary in this case. Both statements work the same below.

%let num=%index(/abc/cde/dev/data/ods,/data);

%put #

%let num=%index(/abc/cde/dev/data/ods,/data);

%put #

Tom
Super User Tom
Super User

The quotes are considered part of the strings by the macro processor. So there is no match because of the quotes around /data.

See what happens if you try it this way.

%let num=%sysfunc(index(/abc/cde/dev'/data'/ods','/data'));


jay_q
Calcite | Level 5

Hi Tom, thanks for your answer. It worked out great.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2741 views
  • 5 likes
  • 3 in conversation