Click here to Skip to main content
15,905,967 members
Home / Discussions / C#
   

C#

 
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.

GeneralRe: tokenzing strings Pin
lawrenceinba30-Jan-09 22:33
lawrenceinba30-Jan-09 22:33 
GeneralRe: tokenzing strings Pin
#realJSOP30-Jan-09 23:47
professional#realJSOP30-Jan-09 23:47 
AnswerRe: tokenzing strings Pin
Najmal31-Jan-09 3:48
Najmal31-Jan-09 3:48 
Questionxml file encryption and decryption Pin
vishnukamath30-Jan-09 18:06
vishnukamath30-Jan-09 18:06 
AnswerRe: xml file encryption and decryption Pin
Christian Graus30-Jan-09 18:50
protectorChristian Graus30-Jan-09 18:50 
AnswerRe: xml file encryption and decryption Pin
Najmal31-Jan-09 3:51
Najmal31-Jan-09 3:51 
QuestionClass Decleration Pin
NazarHussain30-Jan-09 18:03
NazarHussain30-Jan-09 18:03 
AnswerRe: Class Decleration Pin
Christian Graus30-Jan-09 18:36
protectorChristian Graus30-Jan-09 18:36 
GeneralRe: Class Decleration Pin
NazarHussain30-Jan-09 18:40
NazarHussain30-Jan-09 18:40 
GeneralRe: Class Decleration Pin
Christian Graus30-Jan-09 18:51
protectorChristian Graus30-Jan-09 18:51 
Questionproblem with threads Pin
prasadbuddhika30-Jan-09 17:28
prasadbuddhika30-Jan-09 17:28 
AnswerRe: problem with threads Pin
Christian Graus30-Jan-09 18:54
protectorChristian Graus30-Jan-09 18:54 
AnswerRe: problem with threads Pin
Najmal31-Jan-09 4:00
Najmal31-Jan-09 4:00 
QuestionAvoiding memory leaks Pin
dwolver30-Jan-09 12:16
dwolver30-Jan-09 12:16 
AnswerRe: Avoiding memory leaks Pin
Colin Angus Mackay30-Jan-09 12:29
Colin Angus Mackay30-Jan-09 12:29 
GeneralRe: Avoiding memory leaks Pin
riced31-Jan-09 5:13
riced31-Jan-09 5:13 
AnswerRe: Avoiding memory leaks Pin
Christian Graus30-Jan-09 15:39
protectorChristian Graus30-Jan-09 15:39 

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.