Is it possible to have a string replace an integer. For example if you had a program that accepts a large integer like 23933, could you do something like:
int 2 = "two" int 3 = "three" int 9 = "nine"
So the output will read as follows:
"two three nine three three"
How would you go about doing this?