我正在编写一个实用程序,用于将网络上所有设备的所有系统信息收集到 XML 文档中,其中一个值是某个软件版本号。不幸的是,版本号仅存储在每台机器上的单个文本文件中(c:\master.txt),更有趣的是,每个文本文件的格式都不同,具体取决于所使用的图像。
可以说
Product Number: 11dsSt2 BRANDONII,STNS6.0.2.200
下一个
Ver: 22335TS BOX2 S6.1.3.011,STN
等等。
我所做的是创建一个 VBS 来查找与版本模式匹配的数字模式,即
[A-Z]#.#.#.###
这可行,但是我只想输出该模式,而不是整行。这是我的代码。有什么建议么?
Const ForReading = 1
Set objRegEx = CreateObject("VBScript.RegExp")
objRegEx.Pattern = "[A-Z]{1}[0-9]{1}.[0-9]{1}.[0-9]{1}.[0-9]{3}"
objregex.global = true
objregex.ignorecase = true
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("C:\master.txt", ForReading)
Do Until objFile.AtEndOfStream
strSearchString = objFile.ReadLine
set colMatches = objRegEx.Execute(strSearchString)
If colMatches.Count > 0 Then
Addmatch
End If
Loop
objFile.Close
Sub Addmatch 'Creates a text file with the part number
Const ForAppending = 8
Set objFSO = CreateObject("Scripting.FileSystemObject")
set objFile1 = objFSO.OpenTextFile("C:\test.txt", ForAppending, True)
objFile1.Writeline strSearchString
objFile1.Close
end sub