我有一个包含 5 行的 txt 文件。我想阅读第 1 行和第 5 行,但我不想阅读第一个单词,所以这里有一个 txt 文件包含的示例:
Title: [Abo Manten] Kyuusho seme maniacs vol. 3 (Weak Spot Maniacs vol.3)
Upload Time: 2012-08-29 15:20
Uploaded By: Hairs Fan
Downloaded: 2012-09-17 12:11
Tags: swimsuit, abo manten, femdom, cbt, footjob
所以我想读第一行但我不想读这个词标题:同样的事情发生在第 5 行我不想读这个词标签:
到目前为止,我的代码只读取了第一行和第五行。第 5 行也用逗号分隔文本。我不知道如何使第 1 行和第 5 行不阅读特定的单词。
Set f = CreateObject("Scripting.FileSystemObject").OpenTextFile("C:\PATH\TO\your.txt", 1)
line1 = f.ReadLine
f.SkipLine
f.SkipLine
f.SkipLine
line5 = Split(f.ReadLine, ",")
f.Close