SASUnit Examples  Version 1.5.0
unix_aix/_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  %LET i_string = %sysfunc(tranwrd(&i_string., %str( ),%str(\ )));
25  &i_string.
26 
27 %MEND _escapeblanks;