从所有观察结果中删除结肠

时间:2014-04-23 15:56:26

标签: sas

我有一个变量,其中更多的句子中有一个冒号(:)。喜欢 AC:acuimule,AB:abitre,..

我需要从该变量中的所有行中删除冒号。我试过了

proc sql;
create table aaa as
 select variable1,
 variable2=compress(variable2,":")
 FROM aaa2
;QUIT;

1 个答案:

答案 0 :(得分:2)

如果要使用PROC SQL,则不要使用=。

proc sql;
create table aaa as
 select variable1,
 compress(variable2,':') as variable2
 FROM aaa2
;
quit;