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?
|
|
You could use String.Split method.
For more information see Sam Allen's article about splitting strings in c# (Performance, Regex) |
|||
|
|
|
|
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. |
||
|
|
|
|
I think the nearest in the .NET Framework is string.Split() |
||
|
|
|
|
use Regex.Split(string,"#|#"); |
||
|
|
|
|
I don't know Java, but i think you need String.Split. |
||
|
|
|
|
For complex splitting you could use a regex creating a match collection. |
||
|
|
|
|
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:
More info and a useful example from MS here http://msdn.microsoft.com/en-us/library/bb383977.aspx |
||||
|
|
|
what about splitting on something like test123#|#test456#|#test789, if I want to split on the #|# String sequence |
||
|
|
|
read this, split function has an overload takes an array consist of seperators http://msdn.microsoft.com/en-us/library/system.stringsplitoptions.aspx |
||
|
|
