Here is an example of a string that I am wishing to use:

tourney ffa team ctf clan arena
I am wanting to split it into an array.

I am currently using this code:

Code:
stringCurrentGameTypes = Split(stringTypeList, " ")
This works. I am wanting to make an exception to certain strings. "clan arena" is one.

Rather than having two entries, one as "clan" and the other as "arena", I would like "clan arena" to be one entry in the array.

How would the best way be to go about this?