> > How can I turn {"sthing"} into "sthing"? I mean, I look a way for a LIST > > variable to become a STRING variable... Thank you. string(list[x]) Where list is the name of your list....and x is the place in the list. For example...... {Hi,I,like,cheese,do,you?} -> Words string(words[3]) Returns..............like :D -Justin