uzyskać ciąg między innym ciągiem vb.net

Mam kod poniżej. Jak uzyskać ciągi w nawiasach? Dziękuję Ci.

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

questionAnswers(4)

yourAnswerToTheQuestion