Pergunta

Alguém sabe o formato SAS é necessária a fim de converter esta string corretamente?

data _null_;
 x="0.14553821459";
 y=input(x,best32.);
 put y=;
run;
Foi útil?

Solução

Tente este

data _null_;
 x="0.14553821459";
 y=input(x,13.11);
 put y= 13.11;
run;

Eu tenho

y=0.14553821459
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top