I get this message when coding, no idea why.. Can't find a solution, very new to this stuff!
Private Function GetBetween(ByVal Input As String, ByVal STR1 As String, ByVal STR2 As String, ByVal Index As Integer) As String
Dim Temp As String = Regex.Split(Input, STR1)(Index + 1)
Return Regex.Split(Temp, STR2)(0)
End Function
Thanks
...
Go to the complete details ...