VBScript - String Compare script

preview_player
Показать описание
A walkthrough of a simple VBScript to perform a string comparison. Useful for quick checking of items like Checksums and Hashes, see the video on that in the Playlist.

Read more, get code and files

SUBSCRIBE to the Channel!
Рекомендации по теме
Комментарии
Автор

The eagle eyed would have noticed assignment was needed in the If statement where we convert to LCase, Download the script from the link in the description where this is corrected.

ElseIf  sStringFormat = vbYes Then
sFirstString = LCase(sFirstString)
sSecondString = LCase(sSecondString)
sResult = StrComp(sFirstString, sSecondString)

MarkCrowtherTheTester