Erhalte String zwischen anderem String vb.net

Ich habe Code unten. Wie bekomme ich Zeichenketten in Klammern? Vielen Dank.

Dim tmpStr() As String
    Dim strSplit() As String
    Dim strReal As String
    Dim i As Integer

    strWord = "hello (string1) there how (string2) are you?"

    strSplit = Split(strWord, "(")
    strReal = strSplit(LBound(strSplit))

    For i = 1 To UBound(strSplit)
        tmpStr = Split(strSplit(i), ")")
        strReal = strReal & tmpStr(UBound(tmpStr))
    Next

Antworten auf die Frage(4)

Ihre Antwort auf die Frage