Hi,
I was creating a dynamic list of code string with semicolon and putting them on macro variables. When i try to verify these constructed statements, i found out that i could not print these as they contain semi colon. An example of my problem below,
data _null_;
call symputx('MyList','stuff with '||'&'||' and '||' ;'||' and some other stuffs');
run;
%put &=MyList;
Is there a way i could get around this? I dont have to use %put and my main purpose is to be able to review my list as my build is way more complicated that the example above.
Cheers for any help.