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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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