Skip to content
⌘ NSIS Forum Archive

newbie question

4 posts

milkboy#

newbie question

Can anyone tell me if it is possible to concatenate string constants and variables within the .nsi script file?
Joel#
Read this Doc from Nsis:



About
To extend a command over multiple lines, use a backslash (\) at the end of the line, and the next line will effectively be concatenated the end of it.
Hope this help...
kichik#
Yes milkboy, it is. Just write them one after the other, it works. For example:

"this is a var: $0. this is a constant ${CONSTANT}"