views:

405

answers:

2

How do I concatenate 2 strings in NSIS?

+3  A: 
StrCpy $1 "one string"

StrCpy $2 " second string"

MessageBox MB_OK "$1$2"
TheHurt
A: 

StrCpy $1 "Hello"

StrCpy $2 "World"

StrCpy $3 "$1 $2"

DetailPrint $3

diego2k