vote up 3 vote down star
1

I'm doing simple string input parsing and I am in need of a string tokenizer. I am new to C# but have programmed Java, and it seems natural that C# should have a string tokenizer. Does it? Where is it? How do I use it?

flag

79% accept rate

9 Answers

vote up 21 vote down check

You could use String.Split method.

class ExampleClass
{
    public ExampleClass()
    {
        string exampleString = "there is a cat";
        // Split string on spaces. This will separate all the words in a string
        string[] words = exampleString.Split(' ');
        foreach (string word in words)
        {
            Console.WriteLine(word);
            // there
            // is
            // a
            // cat
        }
    }
}

For more information see Sam Allen's article about splitting strings in c# (Performance, Regex)

link|flag
vote up 4 vote down

I think the nearest in the .NET Framework is

string.Split()
link|flag
vote up 0 vote down

I don't know Java, but i think you need String.Split.

link|flag
vote up 8 vote down

The split method of a string is what you need. In fact the tokenizer class in Java is depreciated in favor of Java's string split method as well.

link|flag
vote up 0 vote down

For complex splitting you could use a regex creating a match collection.

link|flag
vote up 0 vote down

If you are using C# 3.5 you could write an extension method to System.String that does the splitting you need. You then can then use syntax:

string.SplitByMyTokens();

More info and a useful example from MS here http://msdn.microsoft.com/en-us/library/bb383977.aspx

link|flag
1  
This is a solution to a local problem, not an obvious/general purpose System.String operation. A utility class might be in order, but it would be extension method abuse to use an extension method here. – 280Z28 Jul 15 at 21:48
vote up 0 vote down

what about splitting on something like test123#|#test456#|#test789, if I want to split on the #|# String sequence

link|flag
have you tried the String.Split ? it has a overload which accepts a Strings as the token to split on. – Davy Landman Apr 15 at 12:19
vote up 1 vote down

use Regex.Split(string,"#|#");

link|flag
vote up 0 vote down

read this, split function has an overload takes an array consist of seperators http://msdn.microsoft.com/en-us/library/system.stringsplitoptions.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.