I was under the impression that INSERT would allow me to insert an entire string inside another string, but it seems not to behave that way.
I'm trying to build a string that represents a score, and when the score is zero, the string is "00000". When the score is 3298, then the string would read "003298"
I converted 3298 to a string and then used Insert(2, scoreString), but this didn't work.
So how do I insert 3298 into "000000"?
-Sterling
I'm trying to build a string that represents a score, and when the score is zero, the string is "00000". When the score is 3298, then the string would read "003298"
I converted 3298 to a string and then used Insert(2, scoreString), but this didn't work.
So how do I insert 3298 into "000000"?
-Sterling