Click here to Skip to main content
15,923,051 members
Home / Discussions / C#
   

C#

 
AnswerRe: Server side function from javascript. Pin
Christian Graus30-Jan-09 23:29
protectorChristian Graus30-Jan-09 23:29 
GeneralRe: Server side function from javascript. Pin
Atul Shriram rane30-Jan-09 23:39
Atul Shriram rane30-Jan-09 23:39 
Questioninherited form Pin
pampam11030-Jan-09 21:59
pampam11030-Jan-09 21:59 
AnswerRe: inherited form Pin
Wendelius30-Jan-09 22:26
mentorWendelius30-Jan-09 22:26 
GeneralRe: inherited form Pin
pampam11030-Jan-09 22:37
pampam11030-Jan-09 22:37 
GeneralRe: inherited form Pin
Wendelius30-Jan-09 22:53
mentorWendelius30-Jan-09 22:53 
GeneralRe: inherited form Pin
pampam11030-Jan-09 22:59
pampam11030-Jan-09 22:59 
GeneralRe: inherited form Pin
Najmal31-Jan-09 3:35
Najmal31-Jan-09 3:35 
AnswerRe: inherited form Pin
Christian Graus30-Jan-09 22:27
protectorChristian Graus30-Jan-09 22:27 
GeneralRe: inherited form Pin
pampam11030-Jan-09 22:54
pampam11030-Jan-09 22:54 
QuestionIn MSSQL, how to find any row has updated or not after executing the update query? [modified] Pin
S a n d y30-Jan-09 21:08
S a n d y30-Jan-09 21:08 
AnswerRe: In MSSQL, how to find any row has updated or not after executing the update query? Pin
Wendelius30-Jan-09 22:20
mentorWendelius30-Jan-09 22:20 
AnswerRe: In MSSQL, how to find any row has updated or not after executing the update query? Pin
Christian Graus30-Jan-09 22:26
protectorChristian Graus30-Jan-09 22:26 
AnswerRe: In MSSQL, how to find any row has updated or not after executing the update query? Pin
Najmal31-Jan-09 3:42
Najmal31-Jan-09 3:42 
Questionusing enterprise logging how to create custom event logs Pin
mdkarimulla30-Jan-09 20:41
mdkarimulla30-Jan-09 20:41 
AnswerRe: using enterprise logging how to create custom event logs Pin
Wendelius30-Jan-09 22:30
mentorWendelius30-Jan-09 22:30 
QuestionDatagridview Update Pin
sjs4u30-Jan-09 19:11
sjs4u30-Jan-09 19:11 
AnswerRe: Datagridview Update Pin
raihansazal31-Jan-09 17:46
raihansazal31-Jan-09 17:46 
Questiontokenzing strings Pin
lawrenceinba30-Jan-09 18:23
lawrenceinba30-Jan-09 18:23 
AnswerRe: tokenzing strings Pin
Wes Aday30-Jan-09 18:37
professionalWes Aday30-Jan-09 18:37 
AnswerRe: tokenzing strings Pin
Christian Graus30-Jan-09 18:47
protectorChristian Graus30-Jan-09 18:47 
GeneralRe: tokenzing strings Pin
lawrenceinba30-Jan-09 19:38
lawrenceinba30-Jan-09 19:38 
GeneralRe: tokenzing strings Pin
Christian Graus30-Jan-09 20:20
protectorChristian Graus30-Jan-09 20:20 
GeneralRe: tokenzing strings Pin
lawrenceinba30-Jan-09 20:37
lawrenceinba30-Jan-09 20:37 
GeneralRe: tokenzing strings Pin
Christian Graus30-Jan-09 21:02
protectorChristian Graus30-Jan-09 21:02 
bloody hell. Buy a C# book. Read my article on how to use google. If you can't understand my answer so far, then giving you the precise code will only move you further along the line of having people you work for think you have some sort of clue. And, if you're teaching yourself, refer to point a. Buy a book, and learn to use google, so you don't ask questions that are trivial, and so you know enough to be able to apply the answers when they are given to you.

I give up.

string values = "#55;xx sterrr,yy city,india";

char[] seperators = { ',', '#', ';', ' ', '/', '\0', '&', '-' };
string[] sites = values.Split(seperators, StringSplitOptions.RemoveEmptyEntries );


foreach (string a in sites)
{
// Console.WriteLine(a);
Console.WriteLine("token number is\t{0} token'd string is\t{1}\tlength of the string is {2}", tokenIndex++, a, a.Length);
}

But, you're pretty damn stupid to not be able to work that out from what I told you, which included a description, and all the keywords you need to find a working example with google, in seconds. I confirmed this when I responded to you.

Christian Graus

Driven to the arms of OSX by Vista.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.