I'm using a put-statement that is over 262 characters.
SAS is outputting the put-statement as two separate lines in the output file.
How do I prevent this break from happening?
I marked the location where SAS is breaking the line of code with this "XreturnX".
Thank you.
filename foo "C:\Documents and Settings\Desktop\clock_output.html";
DATA _NULL_;
file foo;
put ' mycountainer.innerHTML="
Days : | Hour : | Min : | Sec |
"+result[''days'']+" & XreturnX nbsp; : | "+result[''hours'']+" : | "+result[''minutes'']+" : | "+result[''seconds'']+" |
"';
run;