总之,我正在努力实现以下目标:
data _null_;
input x $ 1-50 ;
call symput('problem',x);
cards4;
'this' "is '' my "string"" from 'hell!
;;;;
run;
data _null_;
x="%superQ(problem)";
put x=;
run;
superq 函数在管理不匹配的引号方面做得很好,但是连续的引号 ("") 仍然被解析回变量 X 中的单引号。
这是可寻址的吗?
当前结果:
x='this' "is '' my "string" from 'hell!
期望的结果:
x='this' "is '' my "string"" from 'hell!