我有一个包含30,000行的文本文件 我想搜索文本文件中指定的两个数字...... 我得到的结果是整行..... 这是搜索和显示结果的方式示例... 请帮助我,因为我非常需要它
要在
中搜索的文本示例
期望的结果
答案 0 :(得分:0)
像下面这样的东西可以工作。它的作用是,一次遍历文件行并使用IF语句来测试它是否满足要求。然后,一旦找到该行,返回它或用它做你想做的事,然后如果找到则退出for循环。
For Each line As String In File.ReadLines("file.txt")
If line.Contains("Here put the first number") AndAlso line.Contains("Here put the second number")
'you found the line, now return the line
Exit For 'Once you found the line exit the loop, as it will continue reading the file
End If
Next
此信息也可以通过谷歌搜索如何读取文件。 File.ReadLines此链接可以帮助您了解最新情况。