一.单个变量添加去除转行 空格
data t1;
a=cats("aaa",'0a'x);
b=cats("aaa");
c=compress(a,'0a'x);
if a=b then f1=1;
else f1=2;
if b=cs then f2=1;
else f2=2;
OUTPUT;
run;

data t1;
a=cats("aaa",'0a'x);
b=cats("aaa");
c=compress(a,'0a'x);
if a=b then f1=1;
else f1=2;
if b=cs then f2=1;
else f2=2;
OUTPUT;
run;
