I tell Stata that:

Code:
local 1 "a b c"
local 2 "d e f"
local 3 "g h i"
and I want it to create the following local:

Code:
local 10 "a b c d e f g h i"
without having to write it explicitly but by a loop.
Nick replied to my post yesterday and suggested the following:

Code:
forval j = 1/10 {
      foreach v of var `list`j'' {
            ....
      }
}
However, I can't find a way to produce the local I want with it.

Can you think of an elegant and simple way of doing it?