Seems like a really simple question, but I haven't been able to find any way to convert an int to a string in unrealScript. Is there a function for it?
Thanks.
Seems like a really simple question, but I haven't been able to find any way to convert an int to a string in unrealScript. Is there a function for it?
Thanks.
The quick and easy Java-cheating-like style:
MyString = MyInt $ "";
$ concatenates strings without inserting a space in between and "" is just an empty string.
Our Loop, which art in source code, hallowed be thy keyword.
Thy condition come, thy instruction be done, in RAM as it is in cache.
Increment us this day our daily counter,
and forgive us our typos, as we also have forgiven our compilers.
And lead us not to the nullpointer but deliver us from bugs.
For thine is the API, the GUI, and the CLI while(true).
Semicolon;Please don't send me questions about how to do something in the UDK via PM. That is better discussed in the forums and we only have limited PM storage.
Edit, nevermind, stupid question. Got it sorted, thanks for your help.
Last edited by adam753; 04-26-2012 at 10:08 AM.
IntString = string(YourInt);
Bookmarks