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]
AW: st: Remove numbers from variable name
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
Subject
AW: st: Remove numbers from variable name
Date
Tue, 29 Jun 2010 09:02:39 +0200
<>
" Does not -subinstr- work for string observation, and not variable names?"
-subinstr- substitutes parts of strings within strings. Since a variable
name is just a string, I can use it for your purposes:
*************
clear*
gen question5doyouhave=""
gen question6areyou=""
foreach var of varlist _all{
loc newname = substr(subinstr("`var'","question","",1),2,.)
rename `var' `newname'
}
*************
For the -varname-s containing two digits, you would have to change the code
to "),3,.)" at the end of the -local- line...
HTH
Martin
-----Ursprüngliche Nachricht-----
Von: [email protected]
[mailto:[email protected]] Im Auftrag von Rasika Raghavan
Gesendet: Dienstag, 29. Juni 2010 06:39
An: [email protected]
Betreff: Re: st: Remove numbers from variable name
Richard,
Thanks. It worked out fine. Can you suggest though a way in which I
don't have to specify the variables? Why I am asking is that, for
single digit questions it would be predrop(10) and for two digit
question numbers, it would be predrop(11). While it was easy in my
case, I can think of situations where this might work out to be
tedious.
Martin,
The "are you" was a typo. But thanks, I had not realized something
like -strtoname- existed.
I did not quite follow "For your substitution, look at -subinstr()-.
Why not put the question in the -var label- or a -note- to the
variable?"
Does not -subinstr- work for string observation, and not variable names?
Thanks
Rasika
*
* 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/
*
* 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/