如何在NSIS中连接2个字符串

时间:2010-04-13 20:09:51

标签: string nsis string-concatenation concatenation

如何在NSIS中连接2个字符串?

4 个答案:

答案 0 :(得分:40)

StrCpy $1 "one string"

StrCpy $2 " second string"

MessageBox MB_OK "$1$2"

答案 1 :(得分:16)

如果要使用相同的变量进行连接,可以执行以下操作:

StrCpy $1 "ABC"

StrCpy $1 "$1123"

DetailPrint $1

输出为“ABC123”

答案 2 :(得分:12)

StrCpy $1 "Hello"

StrCpy $2 "World"

StrCpy $3 "$1 $2"

DetailPrint $3

答案 3 :(得分:0)

如果您希望将一个长字符串分成多行,只需在引号内使用\

MessageBox MB_OK "Alright, Mr. User you are done here, so you can go ahead and \ 
stop reading this message box about now."