//convert An integer to a string
i = 12;
s = (i).toString();
//or can do like this

s = "" + i;