string SplitString = "Hello Pabitra !123456! City IS :bhubaneswar";
string Name = SplitString.Split('!')[1];
string City = SplitString.Split(':')[1];
Response.Write(Name);
Response.Write(City);
string Name = SplitString.Split('!')[1];
string City = SplitString.Split(':')[1];
Response.Write(Name);
Response.Write(City);
No comments:
Post a Comment