Re: String concatenation
Posted by Gabriel Landini on
URL: http://imagej.273.s1.nabble.com/Saving-array-as-a-txt-file-tp3702004p3702006.html
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.