$sPath = @ScriptDir & '\file.txt'; Path to the file
$sCheck_Lines = 'string1|string2|string3|string4|string5'
$sCheck_Lines = StringRegExpReplace($sCheck_Lines, '([][{}().?+*\\^])', '\\\1')
$iRet = StringRegExp(FileRead($sPath), '(?im)^(' & $sCheck_Lines & ')(\r\n|\r|\n)?')
If Not $iRet Then MsgBox(0, 'Result', 'There is no relevant strings in file')