StreamTokenizer class in .net / C#
Hello All
what is the java equivalent StreamTokenizer class in .net
lets say i have a string "abc+cd*4";
with StreamTokenizer i am able to split it into different token
like
abc
+
cd
*
4
is there any namespace or build in mechanism to do that
Thanks