IndexOutOfRangeException - 读取文件

IndexOutOfRangeException - Reading through a file

因此,我正在尝试通读一个文件,并将索引设置为计数器,这样我就可以在文件中从一个字符移动到另一个字符,以找到 ° 所在的索引。我一直收到 IndexOutOfRangeException,尽管我不知道哪里出了问题。

 Dim chr As String
    Dim c1 As String
    Dim c2 As String
    Dim c3 As String
    Static index As Integer = -1
    index += 1
    chr = numDat(index)

    While Asc(chr) <> 176
        index += 1
        chr = numDat(index)
    End While

我在 chr = numDat(index) 的索引处收到错误。任何帮助将不胜感激,谢谢!

编辑:我忘了说 numDat 是一个已经读入整个文件的字符串。

numDat = My.Computer.FileSystem.ReadAllText(path + fileName)

您可以像这样找到所有出现的 °

numDat = My.Computer.FileSystem.ReadAllText(path + fileName)
Dim index As Integer = numDat.IndexOf("°")
While index <> -1
    Debug.Print(index)
    index = numDat.IndexOf("°", index + 1)
End While