friend
一个笨办法
data d(keep=a b e);
input a $18. b;
length e $ 50;
x1=substr(a,11,8);
x2=substr(a,1,11);
c=input(x1,8.);
d=c+b;
x1=put(d,$8.);
e=strip(x2)||strip(x1);
cards;
123456758942533556 5
123456758942533545 8
123456758942533578 1
123456758942533512 2
123456758942533565 3
123456758942533558 2
;run;