0

谁能破译我怎么可能得到这个“System.IndexOutOfRangeException”?我查看了代码,字符串甚至不可能为空,因为我创建的方法将在捕获异常时返回一个字符串,其中包含“Nothing”一词。

这是我得到异常的地方:

Do While (Not (nodeStep Is Nothing))
    stepCmd = cmd + (XPathCommand.STEPCMD + ("/tr[" + stepCount.ToString + "]"))
    stepString = htmlManager.GetTextbyNode(htmlManager.GetNodebyXPath(stepCmd))
    stepChar = stepString.Chars(0) '<--- Exception thrown here!
    Select Case stepChar
        Case "D"
            testScript.StepDesc.Add(stepString.Replace("Description: ", ""))
        Case "E"
            testScript.StepExpect.Add(stepString.Replace("Expected: ", ""))
        Case "S"
            If Not (testScript.StepDesc.Count = testScript.StepExpect.Count) Then
                testScript.StepExpect.Add("< No expected step here >")
            End If
    End Select
    stepCount += 1
    nodeStep = htmlManager.GetNodebyXPath(cmd + (XPathCommand.STEPCMD + ("/tr[" + stepCount.ToString + "]")))
Loop

现在 htmlManager.GetTextbyNode 方法本身就是在首先清理文本字符串之后,它需要一个 HtmlAgilityPack.HtmlNode 并返回节点中的所有文本。问题是,该方法有一个全部捕获(对于其中没有任何文本的节点)以返回字符串“Nothing”,如下所示:

Function GetTextbyNode(ByVal node As HtmlAgilityPack.HtmlNode) As String
    Try
        Return StringCleaner.Clean(node.InnerText)
    Catch
        'If find a NULL Text node
    End Try
    Return "Nothing"
End Function

因此,即使传递的节点是否有 NULL 文本,我也应该得到一个有效的字符串,对吧?如果我得到一个有效的字符串,那么 String.Chars(0) 应该至少有一个字母吗?我不应该取回 NULL 字符串,对吗?还是我错过了什么?

4

1 回答 1

0

正如评论所说,很可能 node.InnerText 是空的,所以我建议更改此方法

Function GetTextbyNode(ByVal node As HtmlAgilityPack.HtmlNode) As String
    Try
        If not String.isNullOrEmpty(node.InnerText) then
           Return StringCleaner.Clean(node.InnerText)
        End If
    Catch
        'If find a NULL Text node
    End Try
    Return "Nothing"
End Function
于 2013-08-14T23:45:18.703 回答