On Wednesday 01 Jan 2014 11:07:06 paul analyst wrote: > I need a vector of string of subtitles: col1, col2, col3, ..., col100000 > How to join "col" phrase with numbers of var(i) ( in the loop)
you can use the `string` function for that:
w = ["col" for i in 1:100000]
for i = 1:100000
w[i] = string(w[i], string(i))
end
>
> w = zeros (100000);
>
> for i = 1:100000
> w [i] =???
> end
>
> Paul
>
