tempstr = Regex.Split("(\b[^\s]+\b)", Text)
Did you try: text.get(array position) to retrieve the data?
Sub Activity_Create(FirstTime As Boolean)
Dim text As String
text= "Please send issues to [email protected], putting them in the reviews doesn't help me find/fix them".touppercase
Dim tempstr() As String
tempstr = Regex.Split("\s", text)
End Sub