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()
This is also easy:
string data = "THExxQUICKxxBROWNxxFOX"; string[] arr = data.Split("xx".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);