How do I convert integer to string
Hi...I know that this is a stupid question with a simple answer, but I really can't figure out how to convert a file size (in bytes) into a string. Can anyone help me with this ?
10 posts
Originally posted by Chilli24If I'm not mistaken, you should use StrCpy $var2 $var1 3. But I'm too lazy to check. 😉
I don't want to substract. Here is want I want to do:
I have $var1 = 0987654321
I want to have $var2 = 098
I thought that
StrCpy $var2 $var1 -7
will have this result. But it obviously doesn't.
How can I obtain the desired result?