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 %.

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