Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: identifying how many digits string var has
From
Joerg Luedicke <[email protected]>
To
[email protected]
Subject
Re: st: identifying how many digits string var has
Date
Sat, 2 Apr 2011 23:30:50 -0400
On Sat, Apr 2, 2011 at 8:38 PM, Daniel Marcelino <[email protected]> wrote:
> Dear all,
> Is there a way to identify how many digits a string var have? In the
> following example I have 18 , 14, and "missing" digits (counting "/".
> "-" and "."). So, I want to identify in var2 how many digits per line
> var1 has.
>
> gen str20 var1 = ""
> input
> "12.205.291/0001-33"
> "12.176.958/0001-17"
> "589.275.222-49"
> "409.011.140-49"
> "12.147.825/0001-12"
> "010.433.392-80"
> "07.752.894/0001-15"
> "."
> end
>
>
> I tried this loop, but it just returned me value "3" for all obs. What is wrong?
>
> foreach x of varlist var1 {
> generate byte var2 = 1 if strlen(`x')
> replace var2 = 2 if strlen(`x')
> replace var2 = 3 if strlen(`x')
> }
The string function -length- (-help string functions-) can do that for you:
gen var2=length(var1)
hth,
J.
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/