Hello.
I want to compare if two password strings are equal. I couldn't use the strCmp function because it is case insensitive 🙂 . Is there a function or a way of comparing two strings in a case sensitive manner.
Comparing strings
2 posts
2 posts
!define LOGICLIB_STRCMP
!include LogicLib.nsh
# ...
${If} $0 S== $1
DetailPrint "same"
${Else}
DetailPrint "different"
${EndIf}