Skip to content
⌘ NSIS Forum Archive

how to do equivalent of atoi

3 posts

moredip#

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
kichik#
Ints are strings too in NSIS. IntOp for example, works with strings which are internally converted to ints using atoi.