how do you split a string with a string in C# how do you split a string with a string in C# asp.net asp.net

how do you split a string with a string in C#


Like this:

mystring.Split(new string[] { delimit }, StringSplitOptions.None);

For some reason, the only overloads of Split that take a string take it as an array, along with a StringSplitOptions.
I have no idea why there isn't a string.Split(params string[]) overload.


I personally prefer to use something like this, since regex has that split:

public static string[] Split(this string input, string delimit){  return Regex.Split(input, delimit);}