how to do equivalent of atoi
Hi all,
Is there a simple way to perform string to int conversion (a la the C atoi() function) in NSIS, without resorting to plugins?
Thanks,
Pete
Archive: how to do equivalent of atoi
how to do equivalent of atoi
Hi all,
Is there a simple way to perform string to int conversion (a la the C atoi() function) in NSIS, without resorting to plugins?
Thanks,
Pete
Ints are strings too in NSIS. IntOp for example, works with strings which are internally converted to ints using atoi.
Oh, ok. That makes life easier ;)
Thanks!