Date: Fri, 13 Apr 2007 07:34:24 -0400
Reply-To: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Gerhard Hellriegel <gerhard.hellriegel@T-ONLINE.DE>
Subject: Re: A_QUESTION: ods html table
Only my relative small experience with html tells me, that this is a HTML-
"feature". It is a description language, what means, you tell it what you
want with some tags and the formatting (what you see in browser) is done
by the browser. I think, that additional blanks are ignored. You might try
it with that:
data test;
x="test";
blank="a0"x;
y=x!!blank!!blank!!x;
z=compress(y," ");
put _all_;
run;
The SAS COMPRESS - function does not "see" that other blank. The "normal"
blank is hex 20. HTML?? Try it out!
Gerhard
On Fri, 13 Apr 2007 13:08:22 +0200, minze su <slhappyls@GMAIL.COM> wrote:
>sorry I use the wrong word. it should be "blank" not "space".
>
>
>On 4/13/07, Minze Su <slhappyls@gmail.com> wrote:
>>
>> Dear all,
>>
>> I met a problem that I put two spaces to a string like "text text", but
>> if I use sas ods html and style=styles.default, two spaces change to one
>> like "text text". what can I do to keep two spaces? Thank you!
>>
>> BR,
>>
>> Minze
>>
|