tokenzing strings
-
using System; public class TokenizeDemo { public static void Main() { int tokenIndex = 0; string values = "#55;xx sterrr,yy city,india"; string[] sites = values.Split(',', '#', ';', ' ', '/', '\0', '&', '-'); 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); } } } output shows first token is null... how to rectify it... only strings should be tokenized..pls help friends
the quieter u become more u hear
-
using System; public class TokenizeDemo { public static void Main() { int tokenIndex = 0; string values = "#55;xx sterrr,yy city,india"; string[] sites = values.Split(',', '#', ';', ' ', '/', '\0', '&', '-'); 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); } } } output shows first token is null... how to rectify it... only strings should be tokenized..pls help friends
the quieter u become more u hear
lawrenceinba wrote:
"#55;xx
The first token is null because of the # as the first character.
Why is common sense not common? Never argue with an idiot. They will drag you down to their level where they are an expert. Sometimes it takes a lot of work to be lazy Individuality is fine, as long as we do it together - F. Burns
-
using System; public class TokenizeDemo { public static void Main() { int tokenIndex = 0; string values = "#55;xx sterrr,yy city,india"; string[] sites = values.Split(',', '#', ';', ' ', '/', '\0', '&', '-'); 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); } } } output shows first token is null... how to rectify it... only strings should be tokenized..pls help friends
the quieter u become more u hear
Did you try reading the documentation ? StringSplitOptions.RemoveEmptyEntries is what you need, it's a parameter on some overloads.
Christian Graus Driven to the arms of OSX by Vista.
-
Did you try reading the documentation ? StringSplitOptions.RemoveEmptyEntries is what you need, it's a parameter on some overloads.
Christian Graus Driven to the arms of OSX by Vista.
then how can i bring 55 as token 0 and so on
the quieter u become more u hear
-
then how can i bring 55 as token 0 and so on
the quieter u become more u hear
Exactly the way I said. I just tested it, and it works, if you use an overload that takes that parameter, 55 is index 0. Did you bother to try it ?
Christian Graus Driven to the arms of OSX by Vista.
-
Exactly the way I said. I just tested it, and it works, if you use an overload that takes that parameter, 55 is index 0. Did you bother to try it ?
Christian Graus Driven to the arms of OSX by Vista.
pls be clear i cant understand.... wat should i do to get token zero for 55
the quieter u become more u hear
-
pls be clear i cant understand.... wat should i do to get token zero for 55
the quieter u become more u hear
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.
-
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.
im so sorry.... im a minor kid... just writting codes for school work.. again sorry for making u angry
the quieter u become more u hear
-
im so sorry.... im a minor kid... just writting codes for school work.. again sorry for making u angry
the quieter u become more u hear
Maybe you should buy a game console and give up on coding...
"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001 -
using System; public class TokenizeDemo { public static void Main() { int tokenIndex = 0; string values = "#55;xx sterrr,yy city,india"; string[] sites = values.Split(',', '#', ';', ' ', '/', '\0', '&', '-'); 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); } } } output shows first token is null... how to rectify it... only strings should be tokenized..pls help friends
the quieter u become more u hear