Hi all,
I had some code that extracted some numbers into variables, and then I put them together in a string.
xlocation = dt1:Die_X[x];
ylocation = dt1:Die_Y[x];
site = dt1:Site[x];
deviceName = "x="||char(xlocation)||" y="||char(ylocation)||" Site"||char(site);
It would output something like this: x= 8 y=2 Site2
But now it outputs this: x=[8] y=[2] Site[2]
I am not sure what I changed. The columns in the data table where I am extracting the variables are Numeric columns.
Does anyone have any ideas why this might be happening? Also, I am having trouble finding an example of how to use the remove from character function.
Something like this? xlocation = Remove From(xlocation, [)?