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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1398 views
  • 0 likes
  • 3 in conversation