| Date: | Wed, 27 Nov 2002 11:58:59 -0800 |
| Reply-To: | Dale McLerran <stringplayer_2@YAHOO.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Dale McLerran <stringplayer_2@YAHOO.COM> |
| Subject: | Re: _compress |
|
| In-Reply-To: | <1558.24.197.110.80.1038425732.squirrel@www.lucidan.com> |
| Content-Type: | text/plain; charset=us-ascii |
|---|
Whoops, I specified the tab character as "08"x. Kevin is correct
that it is "09"x. So, the following code is correct for
compressing the tab character.
data test;
A = "09"x || "a";
put A=;
A_new = compress(A, "09"x);
put A_new=;
run;
=====
---------------------------------------
Dale McLerran
Fred Hutchinson Cancer Research Center
mailto: dmclerra@fhcrc.org
Ph: (206) 667-2926
Fax: (206) 667-5977
---------------------------------------
__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com
|