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

Hi Experts,

this is have:

%let string=i need apostrophe instead of question mark?ed

want:

i need apostrophe instead of question mark'ed

i am using below

data t;

var="&string";

var1=tranwrd(trim(var),"?",",");

call symput("want",var1);

run;

%put &want;

i am getting error :Literal contains unmatched quote.

Thanks

Sam

1 ACCEPTED SOLUTION

Accepted Solutions
data_null__
Jade | Level 19

If you are successful you will create a macro variable with and un-quoted single quote.  This will need special attention depending on what you do next.

It is probably better to quote the unmatched single quote with %str((%');

32         %let string=i need apostrophe instead of question mark%str(%')ed;
33         %put NOTE: &=string;
NOTE: STRING=i need apostrophe instead of question mark'ed

%let string=i need apostrophe instead of question mark?ed;

data _null_;
   var=
"&string";
   var1=transtrn(trim(var),
"?","'");
   call symput("want",var1);
   run;

%put %bquote(&want);


32        
%let string=i need apostrophe instead of question mark?ed;
35         data _null_;
36            var="&string";
37            var1=transtrn(trim(var),"?","'");
38            call symput("want",var1);
39            run;
40        
41        
%put %bquote(&want);
i need apostrophe instead of question mark'ed                                                                                      
                                                  

View solution in original post

3 REPLIES 3
mohamed_zaki
Barite | Level 11

Your code should work.

Please post the complete log

data_null__
Jade | Level 19

If you are successful you will create a macro variable with and un-quoted single quote.  This will need special attention depending on what you do next.

It is probably better to quote the unmatched single quote with %str((%');

32         %let string=i need apostrophe instead of question mark%str(%')ed;
33         %put NOTE: &=string;
NOTE: STRING=i need apostrophe instead of question mark'ed

%let string=i need apostrophe instead of question mark?ed;

data _null_;
   var=
"&string";
   var1=transtrn(trim(var),
"?","'");
   call symput("want",var1);
   run;

%put %bquote(&want);


32        
%let string=i need apostrophe instead of question mark?ed;
35         data _null_;
36            var="&string";
37            var1=transtrn(trim(var),"?","'");
38            call symput("want",var1);
39            run;
40        
41        
%put %bquote(&want);
i need apostrophe instead of question mark'ed                                                                                      
                                                  
sam369
Obsidian | Level 7

Thank you data _null_. I was not successful at first macro variable itself. so i am getting issue.

Thanks

Sam

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 1373 views
  • 0 likes
  • 3 in conversation