rutul 0 Newbie Poster

Thank you I got the answer. this will help me a lot

Split is a function of string. But it needs a consistent characater. What Mono was saying was, add a space between each character then you can split on the space character.
You could do it like this

string val = "4+5-3-6+7";
StringBuilder sb = new StringBuilder();
for(int i = 0; i < val.Length; i++)
{
  if (val[i] != ' ')
  {
    sb.Append(val[i]+" ");
  }
  else
    sb.Append(val[i]);
}
string val2 = sb.ToString();
string[] s = val2.Split(' ');

at this point, s is an array of string = {"4","+","5","-","3","-","6","+","7"}
Then you would need to iterate through that array to separate it into two arrays

rutul 0 Newbie Poster

Hello, I am new with c#. I need help in splitting the operators and operand in two different arrays. For example 4+5-3-6+7 is an input string, so in this i want 4,5,3,6,7 in one array and +,- in another array . can anyone please help me out ?

rutul 0 Newbie Poster

i want to create calender scheduler in c# i which i can insert,edit,update meeting,birthdays,holidays informations . Does any one knows how to solve it?

rutul 0 Newbie Poster

hi

plz any body tell me how to connect flash templates with asp.net 2005....?

rutul 0 Newbie Poster

hello

i want to make login page similar to that of yahoo messanger which contains the checkbox of sign in automatically so i want coding for sign in automatically .....plz help me...

rutul 0 Newbie Poster

i am beginer in windows base aplication so i dont know how to make connectivity in windows appliction using any datasource so plz help me out.....