I have this variable in sas called saying. This variable contains the valueHello 'n Hi
I wrote the following code
data work.queryData;
set work.actualData;
if saying='Hello 'n Hi' then saying2='Hello and hi';
run;
How to avoid character 'in sas?
user3135774
source
share