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

发布于 2024-08-29 10:32:11 字数 27 浏览 8 评论 0原文

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

How do I concatenate 2 strings in NSIS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我们的影子 2024-09-05 10:32:11
StrCpy $1 "one string"

StrCpy $2 " second string"

MessageBox MB_OK "$1$2"
StrCpy $1 "one string"

StrCpy $2 " second string"

MessageBox MB_OK "$1$2"
汹涌人海 2024-09-05 10:32:11

如果你想使用相同的变量连接,你可以这样做:

StrCpy $1 "ABC"

StrCpy $1 "$1123"

DetailPrint $1

输出是“ABC123”

If you want to concatenate using the same variable you can do something like this:

StrCpy $1 "ABC"

StrCpy $1 "$1123"

DetailPrint $1

output is "ABC123"

心碎无痕… 2024-09-05 10:32:11
StrCpy $1 "Hello"

StrCpy $2 "World"

StrCpy $3 "$1 $2"

DetailPrint $3
StrCpy $1 "Hello"

StrCpy $2 "World"

StrCpy $3 "$1 $2"

DetailPrint $3
安稳善良 2024-09-05 10:32:11

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

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

If you're looking to split up one long string over multiple lines, just use the \ inside the quotes:

MessageBox MB_OK "Alright, Mr. User you are done here, so you can go ahead and \ 
stop reading this message box about now."
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文