Here is an example of a string that I am wishing to use:
I am wanting to split it into an array.tourney ffa team ctf clan arena
I am currently using this code:
This works. I am wanting to make an exception to certain strings. "clan arena" is one.Code:stringCurrentGameTypes = Split(stringTypeList, " ")
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?


Reply With Quote