| Date: | Mon, 1 Jun 2009 02:42:58 -0700 |
| Reply-To: | kondal717@GMAIL.COM |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | kondal717@GMAIL.COM |
| Organization: | http://groups.google.com |
| Subject: | Re: Remove leading zeros... |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
hi,
data trial(rename=y=Zero);
input zero $ name $;
y=input(zero,best13.) ;
drop zero;
cards;
00124 ancd
00002154 cdsfs
000245755 aswda
000100245 cdsew
;
run;
proc print;
run;
|