BookmarkSubscribeRSS Feed
bsmile
Calcite | Level 5
submit the following:

%let name=%quote(aaa'ggg);
%put &name;

and then issue %put &name; again, the screen displays
aaa'ggg);%put &name;';

which is not strange since ' is not paired, then submit the following:

%let name=%quote(aaa'ggg');
%put &name;

the screen displays error/warning:
%let name=%quote(aaa'ggg');
NOTE: A missing equals sign has been inserted after the variable name NAME.
%put &name;
ERROR: Open code statement recursion detected.

If then issue %put &name; to check what's in the macro name, the screen displays
=aaa'ggg';;

Question:
(1) The above execution result is very odd to me. Why would the initial error last for ever?
(2) Why would the macro name be assigned that way at the end?
(3) Why would the system complain "recursion detected"?
2 REPLIES 2
PatrickG
SAS Employee
http://swwafs.unx.sas.com/dept/pub/doc/902/gpp/prods/mcrolref/win/mcrolref.hlp/z3514quote.htm

The %quote function only masks single quotes when they occur in pairs, UNLESS you proceed one with a %.

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
  • 2 replies
  • 1112 views
  • 0 likes
  • 2 in conversation