Split a string by another string in C#
Split a string by another string in C#
Split a string by another string in C#
Re: Split a string by another string in C#
In order to split by a string you'll have to use the [string array overload](http://msdn.microsoft.com/en-us/library/tabh47cf.aspx).
```
string data = "THExxQUICKxxBROWNxxFOX";
return data.Split(new string[] { "xx" }, StringSplitOptions.None);
```
```
string data = "THExxQUICKxxBROWNxxFOX";
return data.Split(new string[] { "xx" }, StringSplitOptions.None);
```