23.06.2013, 17:03
Hi,
I have number for ex: 5.
I want to make it 05 i do it like that:
And i have another number:
new numbersx = 05;
And now, if i want to do like that:
I have number for ex: 5.
I want to make it 05 i do it like that:
Code:
new numbers = 5; new writetostringsy[ 50 ]; format( writetostringsy, 25,"%02d",numbers );
new numbersx = 05;
And now, if i want to do like that:
Code:
if( numbersx == strval(writetostringsy) ) { // CAN I DO strval and does it work? }