PDA

View Full Version : String To Number



Unregistered
02-24-2015, 08:21 AM
Hello,
i have setupbuilder 7.3.
how can i convert a string into a number?

linder
02-25-2015, 12:57 AM
Hello,

Variables in SetupBuilder are essentially "type less". You don't have to "declare" variables to be of a specific type, like in some programming languages. Instead, variables can hold any type of value. You can freely assign a string to a variable that currently contains a number, and vice-versa. (This doesn't mean that types aren't important. The type of the value itself still matters for functions.)

Does this help?

Friedrich