you can work around it with regex:
vb.net Code:
Imports System.Text.RegularExpressions Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim s As String = "tourney ffa team ctf ""clan arena""" For Each str As String In Regex.Split(s, "(?<!""\w+?)\s(?!\w+?"")") MsgBox(str.Replace("""", "")) Next End Sub End Class




Reply With Quote