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 tok
The similar to Java's method is:
Regex.Split(string, pattern);
where
string
pattern