Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 NSIS 中对以下字符串进行字符串替换: C:/Program Files (86)替换为C:/Program Files.
C:/Program Files (86)
C:/Program Files
我已经搜索并获得了此链接以进行字符串替换。
从那个链接我需要包括整个功能。它可以最大化编码。是否有任何内置功能或任何其他方式是可能的?
NSIS 只有 3 个基本字符串指令StrCpy:StrLen和StrCmp. 其他一切都建立在宏和函数之上......
StrCpy
StrLen
StrCmp
将“Program Files (86)”转换为其他东西不是一个好主意,Program Files 文件夹可能有不同的名称(在我的系统上它称为 Applications)!使用$ProgramFiles32或$ProgramFiles64获取您想要的目录...
$ProgramFiles32
$ProgramFiles64