Stata The Stata listserver
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

st: RE: RE: Leading Zero's


From   "Nick Cox" <[email protected]>
To   <[email protected]>
Subject   st: RE: RE: Leading Zero's
Date   Tue, 1 Jul 2003 19:21:06 +0100

Alexander Quarshie, MD, MS

> Does anyone know a quick way in STATA to add leading zeros 
> to a numeric variable (even if I have to convert it to a 
> string, that would be okay). 
> A typical example might be to convert the following numbers 
> to a standard five-digit number with leading zeros:
> 2 -->  00002
> 33 --> 00033
> 473 --> 00473
> 59724 --> 59724

Display with leading zeros is a matter of format. 

di %05.0f 2 

A more fundamental change is 

gen str5 s_foo = string(foo,"%05.0f") 

Note that 

. search leading zero 

points to an FAQ 

http://www.stata.com/support/faqs/data/leading0.html

so all this is one command line away in Stata. 

Nick 
[email protected] 

*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index