Click to See Complete Forum and Search --> : converting an integer to a string


nickcrispini
10-17-2003, 11:52 AM
I have an integer I would like to convert to a string with VB Script.

any suggestions?

thanks in advance.

bioS
10-17-2003, 12:08 PM
Have you tryed this ?

yourString = yourInt & ""

rdoekes
10-17-2003, 02:08 PM
Or use the CStr function

Dim myInt
Dim myStr

myInt = 5
myStr = CStr(myInt)