我是否需要包含特定的 .nsh 库或函数定义才能在 NSIS 中使用函数“StrContains”?
我一直在寻找图书馆的下载,但我似乎找不到它?
当我去编译这段代码时,我得到了编译错误:“无效命令:${StrContains}”
!include "LogicLib.nsh"
# Compile error below
!macro test
${StrContains} $0 $1 "abc"
!macroend
Section
DetailPrint ""
SectionEnd