SASUnit Examples  Version 1.5.0
_getextension.sas
Go to the documentation of this file.
1 
25 %MACRO _getExtension (i_file
26  );
27 
28  %LOCAL i; %LET i=0;
29  %DO %WHILE("%scan(&i_file,%eval(&i+1),.)" NE "");
30  %LET i=%eval(&i+1);
31  %END;
32  %IF &i>1 %THEN .%scan(&i_file,&i,.);
33 
34 %MEND _getExtension;