Mine code split strings using "^", I want to split the strings using "^^^^",
string b = "mansi^^^^sharma";
But i m not getting it,Cz split takes just one char.
Mine code is as below-
protected void Button1_Click(object sender, EventArgs e)
{
string b = "mansi^sharma";
string[] splt = b.Split(new char[] { '^' });
}