我是正则表达式的新手。谁能告诉我是否可以确定文件名中是否包含特定单词(如电子邮件或游戏)。
正则表达式是找出答案的最佳方式吗?如果不是,最好的(简单)方法是什么?
任何代码示例将不胜感激。
问候
没有正则表达式不是最好的方法。使用如下所示InStr
Dim str, check
str = "filename.txt"
check = "file"
If InStr(1, str, check) > 0 Then
'Contains
Else
'Does not contain
End If
希望这有帮助。
这是我用来确定文件名中是否有特定单词的代码。
Set objRE = New RegExp
objRE.Global = True
objRE.IgnoreCase = False
objRE.Pattern = WScript.Arguments(0)
For Each objFile In colFiles
bMatch = objRE.Test(objFile.Name)
If bMatch Then
WScript.Echo objFile.Name
objFile.Delete
End If
Next