SASUnit Examples  Version 1.5.0
windows/_escapeblanks.sas
Go to the documentation of this file.
1 
20 %MACRO _escapeblanks (i_string
21  );
22 
23  %IF "&i_string" EQ "" %THEN %RETURN;
24  &i_string.
25 
26 %MEND _escapeblanks;