Ruby Programming Examples: Email, Encryption, Zip, HTTP, XML, FTP

Chilkat Software Components

Convert Integer to String

Back

To convert an integer to a string, call to_s()
myInteger = 348

print "myInteger = " + myInteger.to_s() + "\n"