index(x,'a')就是从变量x找string'a'在第几位
你上面'/'就是要找的对象
举个例子
data null;
a='abc/cd';
x=index(a,'/');
put x=;
run;
x=4