如何在 NSIS 中连接一个字符串与相同的字符串?
我需要在 NSIS 中连接一个字符串,该字符串与其自身构建一个新字符串。
在 C++ 中我会做这样的事情:
if ( h == 0 )
cout << "No errors\n\n";
if ( e > 0 )
err += e1;
if ( f > 0 )
err += e2;
if ( g > 0 )
err+= e3;
但在 NSIS 中:
strcpy $1 "$1$2"
strcpy $1 "$1$3"
strcpy $1 "$1$4"
不起作用。
如有任何建议,我们将不胜感激。
I need to concatenate a string in NSIS that builds a new string with itself.
In C++ I would do something like this:
if ( h == 0 )
cout << "No errors\n\n";
if ( e > 0 )
err += e1;
if ( f > 0 )
err += e2;
if ( g > 0 )
err+= e3;
But in NSIS:
strcpy $1 "$1$2"
strcpy $1 "$1$3"
strcpy $1 "$1$4"
doesn't work.
Any suggestions here would greatly be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)