I\'ve been using the Split() method to split strings, but this only appears to work if you are splitting a string by a character. Is there a way to split a
Split()
There's an overload of String.Split for this:
"THExxQUICKxxBROWNxxFOX".Split(new [] {"xx"}, StringSplitOptions.None);