Re: String concatenation
Posted by
Andy Weller on
URL: http://imagej.273.s1.nabble.com/Saving-array-as-a-txt-file-tp3702004p3702007.html
HMmm, no joy, unfortunately!
Cheers, Andy
On Wed, 2006-07-26 at 16:45 +0100, Gabriel Landini wrote:
> On Wednesday 26 July 2006 16:27, Andy Weller wrote:
>
> > s = ax[z] + "\t";
>
> I haven't tried this...
>
> s = "";
> z = 0;
> while (z<=n) {
> s+= ""+ax[z] + "\t";
> z++;
> }
>
> G.