Date: Wed, 5 Jan 2011 19:54:02 -0500
Reply-To: Arthur Tabachneck <art297@ROGERS.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arthur Tabachneck <art297@ROGERS.COM>
Subject: Re: blanks in html output
Max,
Take a look at: http://support.sas.com/kb/23/332.html
particularly the "asis" option in proc template. e.g.,
proc template;
define style styles.test;
parent=styles.default;
style systemtitle from systemtitle
"Style element responsible for titles " /
asis=on;
style systemfooter from systemfooter
"Style element responsible for footnotes " /
asis=on;
end;
HTH,
Art
-------
On Wed, 5 Jan 2011 17:29:21 -0500, bbser 2009 <bbser2009@GMAIL.COM> wrote:
>As shown in the listing output of the code below, there are 11 blanks
>between "DD" and "1" in the value of y.
>But in the html output, these blanks are seemly collapsed into one blank.
Is
>there a rule behind this? How to make html reflect the true value?
>Thank you.
>
>Max
>-----------------
>ods html file="c:\temp.html";
>data xx;
>z=1;
>y="DD"||z||"ABC";
>run;
>
>proc print data=xx;
>run;
>
>proc contents data=xx;
>run;
>ods html close;
|